Replies: 1 comment 6 replies
-
Hello @vrucht ,
This is exactly what does an over_climate VTherm. You don't put the attributes of the VTherm so I can't tell what is wrong but his should work.
This is also the behaviour of VTherm. Please post your VTherm attributes so that I will be able to check if something is wrong (Development Tools / states / click on your VTherm / copy-paste the attributes with the code settings (button <> in the edit box). EDIT: sorry I thinlk I don'y understand clearly you original post. The VTHerm is control the central switch and not the Aqara TRV itself. Is that true ? If yes with this setting nobody is controling the TRV. You should have a VTherm for each Aqara TRV you want to control and another mecanism to pilot the central heating switch. You can for example, have an automation that turn on the central heater when one the VTherm is heating. This can be done by checking the hvac_action of the VTherm (if 'heating', you turn on the central heater switch). |
Beta Was this translation helpful? Give feedback.
-
Hi all,
I am a newby on Home Assistant and starting to learn the hang of it. I am not a coder so i am mostly dependent on info i get from this community. Please bare with me if i ask stupid questions or don’t exaclty know what the anwer is.
I have the following setup:
Home Assistant (latest version) with an Sonoff Zigbee stick over Z2MQTT.
A smart zigbee Thermostat Aqara E1
A central heater with an on/off switch
Use of versatile Thermostat with Window Sensor
A 4 channel zigbee switch (For every room one switch for easy coding) for our central heating
I want the following:
I have two Rooms that i want to heat independently
Every Room has a Aqara E1 thermostat that must be used to set the target temperature on the thermostat itself because the kids don’t have access to HA
Use the Algorithm of versatil thermostat to control my heater and door/window sensors.
If there is no demand for heat in a room, the thermostat must be closed by setting the target temp on the Aqara.
The issue that i am experiencing is, that i can’t make the setup to work in this configuration. The temperature set on the device, must be somehow copied to the verstatile target temperature, so that the versatil thermostat can activate the heater switch.
The other way arround should also work: When setting the target temp on versatile thermostat, the value must be set on the Aqara smart thermostat so the Aqare can close the valve in the radiator if there is no demand for heat. With this mechanism, i can control the heating of the rooms centrally and through automations.
I see that the attribute that i need in Z2mqtt is: “Ïnternal_heating_setpoint”
{
“away_preset_temperature”: “5.0”,
“battery”: 100,
“calibrated”: true,
“child_lock”: “UNLOCK”,
“device_temperature”: 23,
“internal_heating_setpoint”: 29,
“linkquality”: 54,
“local_temperature”: 21.5,
“occupied_heating_setpoint”: 29,
“power_outage_count”: 1,
“preset”: “manual”,
“schedule”: “OFF”,
“schedule_settings”: “mon,sun|0:00,21.0|12:00,17.0|18:00,21.0|23:59,21.0”,
“sensor”: “internal”,
“setup”: false,
“system_mode”: “heat”,
“valve_alarm”: false,
“valve_detection”: “OFF”,
“window_detection”: “OFF”,
“window_open”: false
}
This attribute should somehow be copied to the temperature attribute in versatile thermostat, but that attribute is not available in MQTT, HA and automations. I tried several pieces of code, but this is where my lack of knowledge comes in.
I hope that you all understand what i want, and can help me to get on track.
Beta Was this translation helpful? Give feedback.
All reactions