mirror of
https://github.com/HASwitchPlate/openHASP.git
synced 2025-07-25 20:26:41 +00:00
Add haspClearPage command
This commit is contained in:
parent
18034e7b13
commit
66067afd86
@ -38,7 +38,7 @@ void dispatchOutput(int output, bool state)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// objectattribute=value
|
// objectattribute=value
|
||||||
void IRAM_ATTR dispatchAttribute(String & strTopic, const char * payload)
|
void dispatchAttribute(String & strTopic, const char * payload)
|
||||||
{
|
{
|
||||||
if(strTopic.startsWith("p[")) {
|
if(strTopic.startsWith("p[")) {
|
||||||
String strPageId((char *)0);
|
String strPageId((char *)0);
|
||||||
@ -62,6 +62,9 @@ void IRAM_ATTR dispatchAttribute(String & strTopic, const char * payload)
|
|||||||
haspProcessAttribute((uint8_t)pageid, (uint8_t)objid, strAttr, payload);
|
haspProcessAttribute((uint8_t)pageid, (uint8_t)objid, strAttr, payload);
|
||||||
} // valid page
|
} // valid page
|
||||||
}
|
}
|
||||||
|
} else if(strTopic.startsWith(F("output"))) {
|
||||||
|
uint8_t state = strcmp_P(payload, PSTR("ON")) == 0 ? HIGH : LOW;
|
||||||
|
digitalWrite(D1, state);
|
||||||
|
|
||||||
} else if(strTopic == F("page")) {
|
} else if(strTopic == F("page")) {
|
||||||
dispatchPage(payload);
|
dispatchPage(payload);
|
||||||
@ -72,6 +75,9 @@ void IRAM_ATTR dispatchAttribute(String & strTopic, const char * payload)
|
|||||||
} else if(strTopic == F("light")) {
|
} else if(strTopic == F("light")) {
|
||||||
dispatchBacklight(payload);
|
dispatchBacklight(payload);
|
||||||
|
|
||||||
|
} else if(strTopic == F("clearpage")) {
|
||||||
|
dispatchClearPage(payload);
|
||||||
|
|
||||||
} else if(strTopic.length() == 7 && strTopic.startsWith(F("output"))) {
|
} else if(strTopic.length() == 7 && strTopic.startsWith(F("output"))) {
|
||||||
String strTemp((char *)0);
|
String strTemp((char *)0);
|
||||||
strTemp = strTopic.substring(7, strTopic.length());
|
strTemp = strTopic.substring(7, strTopic.length());
|
||||||
@ -91,6 +97,17 @@ void dispatchPage(String strPageid)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void dispatchClearPage(String strPageid)
|
||||||
|
{
|
||||||
|
debugPrintln("Clear Page: " + strPageid);
|
||||||
|
|
||||||
|
if(strPageid.length() == 0) {
|
||||||
|
haspClearPage(haspGetPage());
|
||||||
|
} else {
|
||||||
|
haspClearPage(strPageid.toInt());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void dispatchDim(String strDimLevel)
|
void dispatchDim(String strDimLevel)
|
||||||
{
|
{
|
||||||
debugPrintln("DIM: " + strDimLevel);
|
debugPrintln("DIM: " + strDimLevel);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user