Hello, I am having an issue with my automation that gets data from HiveHome.
I want to get a multi line alert when my zone temperature is set to more than 18 or current temperature is 22 for 15minutes.
I am having 2 issues,
(1) I don’t get any alerts if i raise the temperature to more than 18
(2) If I force an execute I don’t get a multi line alert
Following is my code,
alias: Zone Target Temp Alert
description: ''
trigger:
- platform: numeric_state
entity_id: sensor.zone_1_target_temperature
above: '18.00'
attribute: unit_of_measurement
for: '00:15:00'
- platform: numeric_state
entity_id: sensor.zone_1_current_temperature
attribute: unit_of_measurement
above: '22.00'
condition: []
action:
- service: notify.notify
data:
message: >-
Home Target Temperature is set to too high.
{{states.sensor.zone_1_target_temperature.state}}.
Home current temperature is:
{{states.sensor.zone_1_current_temperature.state}}
mode: parallel
max: 10
Any help will be highly appreciated.
Thanks