From 69bbcbec35ea99a4744911ffcc57c4614d98c289 Mon Sep 17 00:00:00 2001 From: Lepuk Date: Sun, 20 Nov 2022 17:16:52 +0100 Subject: [PATCH] Support `unoccupied_heating_setpoint` for Acova PERCALE2, ALCANTARA2 and TAFFETAS2 (#4979) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- devices/acova.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/devices/acova.js b/devices/acova.js index 67ce62ed5b2c5..f71fb8d12dbe3 100644 --- a/devices/acova.js +++ b/devices/acova.js @@ -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']), @@ -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']), @@ -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']),