Iâm a little stuck here, and couldnât find an answer.
We have an EvoHome installation with an HGI80. My aim is to switch off the heating if I have an open window, and turn it back on as soon as the window is closed. For that I have placed a (zWave) sensor on the window.
If I do this with the Honeywell Total Connect Comfort integration, I can switch the room to off (and auto), as follows:
action: climate.set_hvac_mode
metadata: {}
data:
hvac_mode: "off"
target:
entity_id: climate.slaapkamer
However, with the RAMSES_RF integration, I cannot turn off the room. I can only choose between Heat and Auto. Off is not in the drop down box. If I replave Heat with Off in the yaml, it gives an error.
The only place I (think I) can set the HVAC mode to âoffâ is when lowering the temperature. This results in the following YAML:"
action: climate.set_temperature
metadata: {}
target:
device_id: 08358f4e9c15d2f89b478c3b3fec4daa
data:
temperature: 5
hvac_mode: "off"
However, this only turns it off temporarily. The next time there is a scheduled temperature, the device is turned on again.
Setting the preset mode to âpermanentâ like the following:
actions:
- action: climate.set_temperature
metadata: {}
target:
device_id: 08358f4e9c15d2f89b478c3b3fec4daa
data:
temperature: 5
- action: climate.set_preset_mode
metadata: {}
data:
preset_mode: permanent
target:
device_id: 08358f4e9c15d2f89b478c3b3fec4daa
Results in only the last action taking place, so either the temperature is set to 5 degrees, but temporarily, or the current temperature is fixed permanently but not lowered.
Any ideas?