mirror of https://github.com/arendst/Tasmota.git
commit
c311632b7a
|
@ -5,7 +5,7 @@
|
||||||
* Add initial support for MQTT logging using command MqttLog <loglevel> (#6498)
|
* Add initial support for MQTT logging using command MqttLog <loglevel> (#6498)
|
||||||
* Add Zigbee more support - collect endpoints and clusters, added ZigbeeDump command
|
* Add Zigbee more support - collect endpoints and clusters, added ZigbeeDump command
|
||||||
* Add initial support for shutters by Stefan Bode (#288)
|
* Add initial support for shutters by Stefan Bode (#288)
|
||||||
* Add use case for sensor29 pin,1 and sensor29 pin,0 to substitute ON and OFF respectively with MCP230xx driver
|
* Add command to MCP230xx: sensor29 pin,0/1/2 for OFF/ON/TOGGLE
|
||||||
*
|
*
|
||||||
* 6.6.0.13 20190922
|
* 6.6.0.13 20190922
|
||||||
* Add command EnergyReset4 x,x to initialize total usage for two tarrifs
|
* Add command EnergyReset4 x,x to initialize total usage for two tarrifs
|
||||||
|
|
|
@ -636,7 +636,7 @@ bool MCP230xx_Command(void) {
|
||||||
MCP230xx_SetOutPin(pin,pincmd);
|
MCP230xx_SetOutPin(pin,pincmd);
|
||||||
return serviced;
|
return serviced;
|
||||||
}
|
}
|
||||||
if (!strcmp(subStr(sub_string, XdrvMailbox.data, ",", 2), "T")) {
|
if ((!strcmp(subStr(sub_string, XdrvMailbox.data, ",", 2), "T")) || (!strcmp(subStr(sub_string, XdrvMailbox.data, ",", 2), "2"))) {
|
||||||
MCP230xx_SetOutPin(pin,2);
|
MCP230xx_SetOutPin(pin,2);
|
||||||
return serviced;
|
return serviced;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue