Skip to content

Commit

Permalink
Support unoccupied_heating_setpoint for Acova PERCALE2, ALCANTARA2 …
Browse files Browse the repository at this point in the history
…and TAFFETAS2 (#4979)

By default in auto mode, the heater drops gradually to the lowest available temperature when unoccupied (7 °C by default, which is freezing).
This setting to help controlling the unoccupied temperature target
  • Loading branch information
Lepuk committed Nov 20, 2022
1 parent 7111270 commit 69bbcbe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions devices/acova.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ module.exports = [
exposes: [
exposes.climate()
.withSetpoint('occupied_heating_setpoint', 7, 28, 0.5)
.withSetpoint('unoccupied_heating_setpoint', 7, 28, 0.5)
.withLocalTemperature()
.withSystemMode(['off', 'heat', 'auto'])
.withRunningState(['idle', 'heat']),
Expand Down Expand Up @@ -50,6 +51,7 @@ module.exports = [
exposes: [
exposes.climate()
.withSetpoint('occupied_heating_setpoint', 7, 28, 0.5)
.withSetpoint('unoccupied_heating_setpoint', 7, 28, 0.5)
.withLocalTemperature()
.withSystemMode(['off', 'heat', 'auto'])
.withRunningState(['idle', 'heat']),
Expand Down Expand Up @@ -81,6 +83,7 @@ module.exports = [
exposes: [
exposes.climate()
.withSetpoint('occupied_heating_setpoint', 7, 28, 0.5)
.withSetpoint('unoccupied_heating_setpoint', 7, 28, 0.5)
.withLocalTemperature()
.withSystemMode(['off', 'heat', 'auto'])
.withRunningState(['idle', 'heat']),
Expand Down

0 comments on commit 69bbcbe

Please sign in to comment.