Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions wemos/Switch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,10 @@ String Switch::getAlexaInvokeName() {
return device_name;
}

void Switch::setSwitchStatus(bool status) {
switchStatus = status;
}

void Switch::sendRelayState() {
String body =
"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\" s:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\"><s:Body>\r\n"
Expand Down
1 change: 1 addition & 0 deletions wemos/Switch.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class Switch {
void serverLoop();
void respondToSearch(IPAddress& senderIP, unsigned int senderPort);
void sendRelayState();
void setSwitchStatus(bool status);
};

#endif