mirror of
https://github.com/esphome/esphome.git
synced 2025-02-21 20:38:16 +00:00
Add toggle command to cover web_server endpoint (#6319)
This commit is contained in:
parent
81b8451b8a
commit
626221c5a8
@ -748,6 +748,8 @@ void WebServer::handle_cover_request(AsyncWebServerRequest *request, const UrlMa
|
|||||||
call.set_command_close();
|
call.set_command_close();
|
||||||
} else if (match.method == "stop") {
|
} else if (match.method == "stop") {
|
||||||
call.set_command_stop();
|
call.set_command_stop();
|
||||||
|
} else if (match.method == "toggle") {
|
||||||
|
call.set_command_toggle();
|
||||||
} else if (match.method != "set") {
|
} else if (match.method != "set") {
|
||||||
request->send(404);
|
request->send(404);
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user