70 lines
1.9 KiB
YAML
70 lines
1.9 KiB
YAML
## -------------------------------------------------------------------------------------------------##
|
|
## Light_Store
|
|
## https://github.com/pnbruckner/homeassistant-config/blob/master/python_scripts/light_store.py
|
|
## -------------------------------------------------------------------------------------------------##
|
|
script:
|
|
light_store_save:
|
|
sequence:
|
|
- service: python_script.light_store
|
|
data:
|
|
store_name: flash_store
|
|
entity_id:
|
|
- light.bed
|
|
- light.ceiling
|
|
- light.desk
|
|
- light.bed_ceiling
|
|
- light.tv
|
|
light_store_off:
|
|
sequence:
|
|
- service: script.light_store_save
|
|
- service: light.turn_off
|
|
entity_id: light.all_lights
|
|
light_store_restore:
|
|
sequence:
|
|
- service: python_script.light_store
|
|
data:
|
|
store_name: flash_store
|
|
operation: restore
|
|
|
|
|
|
light_ceiling_save:
|
|
sequence:
|
|
- service: python_script.light_store
|
|
data:
|
|
store_name: ceiling_store
|
|
entity_id:
|
|
- light.ceiling
|
|
light_ceiling_restore:
|
|
sequence:
|
|
- service: python_script.light_store
|
|
data:
|
|
store_name: ceiling_store
|
|
operation: restore
|
|
|
|
light_ceiling_bed_save:
|
|
sequence:
|
|
- service: python_script.light_store
|
|
data:
|
|
store_name: ceiling_store
|
|
entity_id:
|
|
- light.bed_ceiling
|
|
light_ceiling_bed_restore:
|
|
sequence:
|
|
- service: python_script.light_store
|
|
data:
|
|
store_name: ceiling_store
|
|
operation: restore
|
|
|
|
light_indirect_save:
|
|
sequence:
|
|
- service: python_script.light_store
|
|
data:
|
|
store_name: ceiling_store
|
|
entity_id:
|
|
- light.all_indirect
|
|
light_indirect_restore:
|
|
sequence:
|
|
- service: python_script.light_store
|
|
data:
|
|
store_name: ceiling_store
|
|
operation: restore |