mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-08-16 18:44:58 +00:00
Move some holiday stuff to a reusable script..
This commit is contained in:
@@ -10,14 +10,8 @@
|
||||
event_type: holiday_lights_on
|
||||
|
||||
action:
|
||||
- service: switch.turn_on
|
||||
entity_id: switch.den_outlet
|
||||
- delay: 00:00:30
|
||||
- service: switch.turn_on
|
||||
entity_id: switch.living_room_outlet
|
||||
- service: switch.turn_on
|
||||
entity_id: switch.dining_room_outlet
|
||||
- delay: 00:00:30
|
||||
- service: script.holiday_switches_on
|
||||
|
||||
|
||||
- alias: 'Holiday Stuff off'
|
||||
trigger:
|
||||
|
@@ -13,6 +13,7 @@ http:
|
||||
ssl_key: !secret ssl_key
|
||||
trusted_networks:
|
||||
- 192.168.10.0/24
|
||||
- 127.0.0.1
|
||||
ip_ban_enabled: True
|
||||
login_attempts_threshold: 3
|
||||
|
||||
|
23
script/holiday_switches_on.yaml
Executable file
23
script/holiday_switches_on.yaml
Executable file
@@ -0,0 +1,23 @@
|
||||
######################################################################################################
|
||||
###Script to shut switches with a 30 second delay to not trample codes
|
||||
### Sample Call
|
||||
# action:
|
||||
# - service: script.holiday_switches_on
|
||||
######################################################################################################
|
||||
|
||||
holiday_switches_on:
|
||||
sequence:
|
||||
- service: switch.turn_on
|
||||
entity_id: switch.living_room_outlet
|
||||
- delay: 00:00:30
|
||||
- service: switch.turn_on
|
||||
entity_id: switch.foyer_outlet
|
||||
- delay: 00:00:30
|
||||
|
||||
- condition: sun
|
||||
after: sunset
|
||||
- service: switch.turn_on
|
||||
entity_id: switch.den_outlet
|
||||
- delay: 00:00:30
|
||||
- service: switch.turn_on
|
||||
entity_id: switch.dining_room_outlet
|
@@ -1,5 +1,5 @@
|
||||
######################################################################################################
|
||||
###Script to turn on scene for the appropriate month for the front of the house.
|
||||
###Script to turn on scene for the appropriate month for the front of the house but only when the sun is down. (Minus 3 Hours)
|
||||
# action:
|
||||
# - service: script.monthly_front_house_scene
|
||||
#
|
||||
|
Reference in New Issue
Block a user