mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-11-07 01:52:11 +00:00
Update Automation Lists
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# Home-AssistantConfig
|
# Home-Assistant Config by @ccostan
|
||||||
Home Assistant configuration files (YAMLs)
|
Home Assistant configuration files (YAMLs)
|
||||||
|
|
||||||
This is my Home Assistant Configuration. I update it pretty regularly.
|
This is my Home Assistant Configuration. I update it pretty regularly.
|
||||||
@@ -11,7 +11,7 @@ Devices I have :
|
|||||||
* iPads
|
* iPads
|
||||||
* iPods
|
* iPods
|
||||||
* iPhones
|
* iPhones
|
||||||
* Nest Thermostat
|
* Nest Thermostats
|
||||||
* Amazon Echo
|
* Amazon Echo
|
||||||
* Phillips Hue Hub
|
* Phillips Hue Hub
|
||||||
* Circle by Disney
|
* Circle by Disney
|
||||||
@@ -32,6 +32,9 @@ Automations:
|
|||||||
* Turn on TV Time Lights (dim and color) at Sunset (if home and TV is on)
|
* Turn on TV Time Lights (dim and color) at Sunset (if home and TV is on)
|
||||||
* Turn on Upstaris light if Nest detects people and it's nighttime.
|
* Turn on Upstaris light if Nest detects people and it's nighttime.
|
||||||
* Turn off lights when Nest detects we are away. (Upstairs and Downstairs)
|
* Turn off lights when Nest detects we are away. (Upstairs and Downstairs)
|
||||||
|
* Turn on some lights when we get home
|
||||||
|
* Blink ALL lights at 9:30 to remind me to take medicine. (also Alexa Alert)
|
||||||
|
* Blink Office lights 15 minutes before ANY meeting on my calendar (using IFTTT)
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|||||||
24
automation/good_night - Copy.yaml
Executable file
24
automation/good_night - Copy.yaml
Executable file
@@ -0,0 +1,24 @@
|
|||||||
|
# There is also an IFTTT recipe that shuts down all lights when Nest goes into Away mode. - event_type= Good_Night
|
||||||
|
|
||||||
|
- alias: 'GoodNight - Away Mode'
|
||||||
|
trigger:
|
||||||
|
- platform: event
|
||||||
|
event_type: good_night
|
||||||
|
- platform: state
|
||||||
|
entity_id: binary_sensor.upstairs_away_mode
|
||||||
|
to: 'on'
|
||||||
|
- platform: state
|
||||||
|
entity_id: binary_sensor.downstairs_away_mode
|
||||||
|
to: 'on'
|
||||||
|
- platform: state
|
||||||
|
entity_id: group.family
|
||||||
|
state: not_home
|
||||||
|
|
||||||
|
condition:
|
||||||
|
condition: state
|
||||||
|
entity_id: group.family
|
||||||
|
state: not_home
|
||||||
|
|
||||||
|
action:
|
||||||
|
service: light.turn_off
|
||||||
|
entity_id: group.all_lights
|
||||||
Reference in New Issue
Block a user