Throughout the winter my boiler periodically needs to be refilled. The only indication we get for this is that the house feels surprisingly cold. I’ll look at my thermostat which thinks it’s heating, but the boiler is not firing because of it’s low water cutoff.
I’d like to use HA to notify me of this condition, but I can’t seem to trigger an alert. Anyone know why this automation won’t trigger? I check my history and the current_temperature attribute correctly indicates changes.
Thank you.
alias: Low Water Alert
trigger:
- platform: state
entity_id:
- climate.heat
attribute: current_temperature
to: "65"
from: "65.5"
- platform: state
entity_id:
- climate.heat
attribute: current_temperature
to: "65"
from: "66"
- platform: state
entity_id:
- climate.heat
attribute: current_temperature
to: "65"
condition:
- alias: Heat is Heating
condition: state
entity_id: climate.heat
attribute: hvac_action
state: heating
action:
- service: script.mobile_notification
data:
message: Looks like the boiler might need a refill.
mode: single