Samfox2 / homebridge-domotiga

Supports domotiga devices on HomeBridge Platform
Apache License 2.0
6 stars 3 forks source link

Flipped condition #21

Closed nordblick2 closed 7 years ago

nordblick2 commented 7 years ago

Line 1533:

var value = (Number(result) == 0) ? 1 : 0;

Should that not be var value = (Number(result) == 0) ? 0 : 1;

Samfox2 commented 7 years ago

Fixed, thanks...