Dear all,
I have a boiler for hot water, connected with solar and with electricity heater. I have the temperature of the coolant in solar and the temperature in the boiler.
So the question is if the temp of the coolant in solar is between - 30 and +40 degrees to switch on the electricity heater(have sonoff with contactor) . And if the temperature of the coolant is above 40degrees and if the temperature in the boiler reaches 45degrees to turn off the electricity heater.
Since now i made 2 automations but they do not work:
First:
id: ‘1660496824034’
alias: Включване на нагревател на бойлер
description: ‘’
trigger:
- platform: numeric_state
entity_id: sensor.sonoff_1001200403_temperature
below: ‘40’
above: ‘-30’
condition: []
action: - type: turn_on
device_id: adf73672527ef98d48d5419d125629bf
entity_id: switch.sonoff_10011ff2fb
domain: switch
mode: single
And second:
id: ‘1660497058047’
alias: Изключване нагревател Бойлер
description: ‘’
trigger:
- platform: numeric_state
entity_id: sensor.sonoff_10011ff2fb_temperature
above: ‘45’ - platform: numeric_state
entity_id: sensor.sonoff_1001200403_temperature
above: ‘40’
condition: []
action: - type: turn_off
device_id: adf73672527ef98d48d5419d125629bf
entity_id: switch.sonoff_10011ff2fb
domain: switch
mode: single