The quirk I originally posted and tweaked no longer works. It seems it requires the new section thats in the quirk linked to by @highsciguy.
Initial testing seems to show it working.
The quirk I originally posted and tweaked no longer works. It seems it requires the new section thats in the quirk linked to by @highsciguy.
Initial testing seems to show it working.
Iâm sorry, but I donât understand what that means. Moes TRV can only work with zigbee2mqtt now?
No. ZHA still works using this revised quirk:
Thank you. Youâre a magician sir!
You made my day, thank you so much! âŚhow do you do that?
Hi @Rofo,
I am trying to get an automation to work with the device, but I cannot figure how to control the target temperature on the thermostatâŚ
I am just trying to create a script, selecting the device and I have available actions against all attributes but the target temperature of the thermostatâŚ
Have you observed that and do you have any idea how to solve this?
And all the best for 2024!
Cheers
OK⌠This was just me not understanding how this works yetâŚ
Answer: You need to use the Climate: Set target temperature
service
eg.
alias: Set downstairs temperature to day time
sequence:
- service: climate.set_temperature
target:
entity_id: climate.xxxx
data:
temperature: 21
mode: single
icon: mdi:thermometer-low
Hey,
i recently bought two BRT-100 TRVs. After i add them to my ZHA i just got two entities.
I found this thread and added the custom quirk for the the beca trv. Now i maybe got all the entities. But some things are not working as intendent i guess.
The Window Detection Switch just activate the feature, but is it possible to set the mode âwindow is openâ with an external sensor? I though there should be one more entity for this.
Im able to control the temperature, but im not able to set the preset mode. If i change the mode on the valve directly it updates in HA, but not the other way around.
what is the binary sensor stands for? I guess its something like the state of the window? But i dont no what exactly.
Thanks
The âWindow Detectionâ turns on or off the window open detection, the binary sensor is whether an open window has been detected.
I donât use the presets, so canât help with that.
When using it with better thermostat integration and with contact sensor that can determine is window or door opened, it works. It will turn off trv if window or door is opened and restore trv back to its set temperature once window or door is closed.
Iâm using automation for that.
Ok, got itâŚi control the Window Detection by an Automation or Better Thermostat.
No or. Better thermostat integration and automation. This trv have no off mode and that why you need this integration. To turn it back on use automation.
This is mine automation for turning it back on.
alias: Luka bedroom radiator
description: Turn on radiator when balcony door is closed
trigger:
- platform: state
entity_id:
- binary_sensor.luka_balcony_door_sensor_contact
from: "on"
to: "off"
condition: []
action:
- choose:
- conditions:
- condition: state
entity_id: binary_sensor.buderus_hk1_sommer_modus
state: "off"
- condition: state
entity_id: climate.luka_bedroom_radiator_2
state: "off"
sequence:
- service: climate.turn_on
data: {}
target:
entity_id: climate.luka_bedroom_radiator_2
mode: single
I managed to got it running. Im not using better Thermostat becauae its Overkill for my usecase, so im using an automation blueprint called âAdvanced Heating Controlâ.
Since this automation Supports an external Sensor, i tried to sync it with the trv via the temperature_calibration attribute.
But now i See some issues with the Update ratio, the Temperature at the Sensor isnt properly Update to home Assistant.
I guess this is an common issue, anybody else got this issue and maybe got an workaround?