I would like to set up 1 notification with multiple triggers. I want this 1 notification to alert me telling me which notification triggered it. My code is as follows:
- id: '1673379772305'
alias: Over 90F Noticiation
description: ''
trigger:
- platform: numeric_state
entity_id: sensor.flower_1_temp_average
for:
hours: 0
minutes: 1
seconds: 0
above: '89'
- platform: numeric_state
entity_id: sensor.flower_2_temp_average
for:
hours: 0
minutes: 1
seconds: 0
above: '89'
- platform: numeric_state
entity_id: sensor.flower_3_temp_average
for:
hours: 0
minutes: 1
seconds: 0
above: '89'
condition: []
action:
- service: notify.gmail
data:
message: '(I want this to tell me which sensor is over 90 degrees F. How can I achieve this?) '
mode: single
sensor names would be sensor.flower_1_temp_average and so on