This repository has been archived on 2023-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
homeassistant-config/packages/light/light_notifications.yaml
darthsandmann 30c91d7e0d add symbol
2022-08-09 13:18:48 +02:00

40 lines
1002 B
YAML

automation:
- alias: light_still_on_notification
mode: single
trigger:
- platform: state
entity_id:
- light.all_lights
from: "off"
to: "on"
for:
hours: 0
minutes: 15
seconds: 0
condition:
- condition: state
entity_id: input_boolean.lights_needed
state: "off"
for:
hours: 0
minutes: 15
seconds: 0
action:
- service: notify.mobile_app_iphone
data:
message: "Lights are still on."
data:
actions:
- action: "LIGHT_TURN_OFF"
title: Turn them off
icon: "sfsymbols:lightbulb"
- alias: light_still_on_notification_event
trigger:
- platform: event
event_type: mobile_app_notification_action
event_data:
action: "LIGHT_TURN_OFF"
action:
- service: light.turn_off
target:
entity_id: light.all_lights