mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-12-03 19:41:47 +00:00
- Updated comments in various YAML configuration files to provide clearer descriptions of functionalities and integrations. - Improved documentation for alarm, alexa_media_player, backups, blink, cbyge, climate, finance, fridge, garadget, glances, hass_agent_homepc, holiday, ios, landscape_lighting, lightning, logger, medicine, nfc_tags, noonhome, office_motion, phynplus, powerwall, printer, processmonitor, proxmox, rachio, rheem_econet, roku, sleepiq, space, speedtest, stats, superbowl, vacuum, wireless, and youtube packages. - Added relevant links and issue references where applicable to enhance user guidance and support.
61 lines
2.1 KiB
YAML
Executable File
61 lines
2.1 KiB
YAML
Executable File
#-------------------------------------------
|
|
# @CCOSTAN
|
|
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
|
# Landscape Lighting - Tuya Smart Life outlets for exterior lights.
|
|
#-------------------------------------------
|
|
######################################################################
|
|
## Schedules and overrides for landscape lighting.
|
|
######################################################################
|
|
# Outlets managed via Smart_Life package.
|
|
group:
|
|
landscaping:
|
|
entities:
|
|
- switch.front_landscaping
|
|
- switch.back_landscaping
|
|
# - switch.villaneri
|
|
#-------------------------------------------
|
|
# Automation : Added to Sunset_ON
|
|
# Automation : Added to Sunset_OFF
|
|
# Automation : Added to Away. (Switches off Back Landscaping)
|
|
# Automation : Added to Late Night Helper Outside (Switches Back lights on)
|
|
automation:
|
|
- alias: 'Landscape lights off'
|
|
id: 05172967-9309-4624-8633-4f8bce4f3aa1
|
|
mode: single
|
|
trigger:
|
|
- platform: state
|
|
entity_id:
|
|
- binary_sensor.sleepnumber_carlo_carlo_is_in_bed
|
|
- binary_sensor.sleepnumber_carlo_stacey_is_in_bed
|
|
to: 'on'
|
|
|
|
condition:
|
|
- condition: or
|
|
conditions:
|
|
- condition: state
|
|
entity_id: binary_sensor.sleepnumber_carlo_carlo_is_in_bed
|
|
state: 'on'
|
|
- condition: state
|
|
entity_id: person.carlo
|
|
state: 'not_home'
|
|
- condition: or
|
|
conditions:
|
|
- condition: state
|
|
entity_id: binary_sensor.sleepnumber_carlo_stacey_is_in_bed
|
|
state: 'on'
|
|
- condition: state
|
|
entity_id: person.stacey
|
|
state: 'not_home'
|
|
|
|
action:
|
|
- service: switch.turn_off
|
|
entity_id: switch.back_landscaping
|
|
|
|
- wait_template: >-
|
|
{{ states.group.bed.state == 'on' }}
|
|
|
|
- delay: '0{{ range(0,2) | random | int }}:{{ range(0,5) | random | int }}{{ range(0,9) | random | int }}:00'
|
|
|
|
- service: homeassistant.turn_off
|
|
entity_id: group.landscaping
|