Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allowing integration of 3rd party SW interaction with switches #42

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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