Skip to content

Commit

Permalink
Add off system mode and improve current_heating_setpoint range fo…
Browse files Browse the repository at this point in the history
…r Moes BRT-100-TRV (#5207)

The Moes TS0601 thermostat (_TZE200_b6wax7g0) has setpoints from 5 to 45 °C in 0.5 °C steps. Additionally, the systemMode can be 'off'.
  • Loading branch information
tefracky committed Dec 27, 2022
1 parent b20ec45 commit 14583fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devices/moes.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,9 +290,9 @@ 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, 1, ea.STATE_SET)
.withLocalTemperature(ea.STATE).withSetpoint('current_heating_setpoint', 5, 45, 0.5, ea.STATE_SET)
.withLocalTemperatureCalibration(-9, 9, 1, ea.STATE_SET)
.withSystemMode(['heat'], ea.STATE_SET)
.withSystemMode(['off', 'heat'], ea.STATE_SET)
.withRunningState(['idle', 'heat'], ea.STATE)
.withPreset(['programming', 'manual', 'temporary_manual', 'holiday'],
'MANUAL MODE ☝ - In this mode, the device executes manual temperature setting. '+
Expand Down

0 comments on commit 14583fd

Please sign in to comment.