Skip to content

Commit

Permalink
BRT-100-TRV: change temperature step to 1
Browse files Browse the repository at this point in the history
While the TRV supports half degree temperature setpoints, the Zigbee
protocol only supports integer values, both for setting and reporting.
  • Loading branch information
xworld21 committed Oct 29, 2022
1 parent f62f86f commit f13a679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devices/moes.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ module.exports = [
e.valve_state(), e.position(), e.window_detection(),
exposes.binary('window', ea.STATE, 'OPEN', 'CLOSED').withDescription('Window status closed or open '),
exposes.climate()
.withLocalTemperature(ea.STATE).withSetpoint('current_heating_setpoint', 5, 35, 0.5, ea.STATE_SET)
.withLocalTemperature(ea.STATE).withSetpoint('current_heating_setpoint', 5, 35, 1, ea.STATE_SET)
.withLocalTemperatureCalibration(-9, 9, 1, ea.STATE_SET)
.withSystemMode(['heat'], ea.STATE)
.withRunningState(['idle', 'heat'], ea.STATE)
Expand Down

0 comments on commit f13a679

Please sign in to comment.