Skip to content

Commit

Permalink
Climate React Auto Setup bug fix (#122)
Browse files Browse the repository at this point in the history
* Climate React Auto Setup bug fixes

AC state setting change should not re-enable Climate React if Auto Setup is disabled.
Removes code that forcefully enabled Climate React on every AC state change.
This feature will now be limited in scope to adjusting the Climate React _settings_ (but NOT enabling/disabling Climate React mode, this should be done by the user directly).
  • Loading branch information
seidnerj authored and benwebbbenwebb committed Jan 10, 2024
1 parent dbf2b55 commit d2467cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sensibo/StateHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ module.exports = (device, platform) => {
const sensiboNewACState = unified.sensiboFormattedACState(device, state)

log.easyDebug(device.name, ' -> Setting New State:')
log.easyDebug(JSON.stringify(sensiboNewACState, null, 0))
log.easyDebug(JSON.stringify(sensiboNewACState, null, 4))

try {
// send state command to Sensibo
Expand Down

0 comments on commit d2467cb

Please sign in to comment.