Skip to content

Commit

Permalink
Fix Typo In Thermostat Humidity
Browse files Browse the repository at this point in the history
  • Loading branch information
krkeegan committed Dec 5, 2019
1 parent ecdf300 commit c1cafe3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion insteon_mqtt/handler/ThermostatCmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ def msg_received(self, protocol, msg):
return Msg.CONTINUE

elif msg.cmd1 == STATUS_HUMID:
self.device.signal_humid_change.emit(self.device, int(msg.cmd2))
self.device.signal_ambient_humid_change.emit(
self.device, int(msg.cmd2)
)
return Msg.CONTINUE

elif msg.cmd1 == STATUS_MODE:
Expand Down

0 comments on commit c1cafe3

Please sign in to comment.