Merge pull request #6533 from andrethomas/mcp230xx

Mcp230xx
This commit is contained in:
Theo Arends 2019-10-01 14:36:22 +02:00 committed by GitHub
commit c311632b7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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;
} }