mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-02-15 14:16:08 +00:00
Cloudy and Dark or just raining. Turnsome interior lights on.
This commit is contained in:
parent
cfa66f4c7f
commit
d05c0078b3
@ -39,7 +39,7 @@ Software on the Pi : [Home Assistant](https://home-assistant.io/) , [Dasher](htt
|
|||||||
* Turn on Upstairs light if Nest detects people and it's nighttime.
|
* Turn on Upstairs 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 abd switches when we get home
|
* Turn on some lights abd switches when we get home
|
||||||
* Turn on some outdoor Lights at Sunset, Turn off 4 hours before sunrise. Turn off interior lights when we go to sleep.
|
* Turn on some outdoor Lights at Sunset or if it gets darkish in the house, Turn off 4 hours before sunrise. Turn off interior lights when we go to sleep.
|
||||||
* Turn on lights during school days for a morning routine for the kids and wife. Has No School overide boolean in GUI.
|
* Turn on lights during school days for a morning routine for the kids and wife. Has No School overide boolean in GUI.
|
||||||
* Detects when lights are turned on and adjusts them to correct brightness based on time of day.
|
* Detects when lights are turned on and adjusts them to correct brightness based on time of day.
|
||||||
* Leverage Alexa, IFTTT and Elekcity outlet to control Printer On/Off via Voice. Turns off automatically after 20 minutes.
|
* Leverage Alexa, IFTTT and Elekcity outlet to control Printer On/Off via Voice. Turns off automatically after 20 minutes.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
###################################
|
###################################
|
||||||
## Dark House Little extra light
|
## Dark House Little extra light
|
||||||
###################################
|
###################################
|
||||||
@ -13,16 +11,26 @@
|
|||||||
- platform: numeric_state
|
- platform: numeric_state
|
||||||
entity_id: sensor.dark_sky_cloud_coverage
|
entity_id: sensor.dark_sky_cloud_coverage
|
||||||
above: 90
|
above: 90
|
||||||
|
- platform: numeric_state
|
||||||
|
entity_id: sensor.dark_sky_precip_intensity
|
||||||
|
above: 1
|
||||||
|
|
||||||
condition:
|
condition:
|
||||||
- condition: numeric_state
|
condition: or
|
||||||
entity_id: sun.sun
|
conditions:
|
||||||
value_template: '{{ state.attributes.elevation }}'
|
- condition: and
|
||||||
below: 20.0
|
conditions:
|
||||||
- condition: numeric_state
|
- condition: numeric_state
|
||||||
entity_id: sensor.dark_sky_cloud_coverage
|
entity_id: sun.sun
|
||||||
above: 90
|
value_template: '{{ state.attributes.elevation }}'
|
||||||
|
below: 20.0
|
||||||
|
- condition: numeric_state
|
||||||
|
entity_id: sensor.dark_sky_cloud_coverage
|
||||||
|
above: 90
|
||||||
|
- condition: numeric_state
|
||||||
|
entity_id: sensor.dark_sky_precip_intensity
|
||||||
|
above: 1
|
||||||
|
|
||||||
action:
|
action:
|
||||||
- service: light.turn_on
|
- service: light.turn_on
|
||||||
entity_id:
|
entity_id:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user