Logging stuff and using IFTTT

This commit is contained in:
CCOSTAN
2016-10-12 00:45:09 +00:00
parent 0f04ee03a7
commit 76fc776a67
4 changed files with 44 additions and 6 deletions

18
Todo.md
View File

@@ -1,6 +1,6 @@
#Todo List #Todo List
* AUTOMATE LAMP UPSTAIRS USING ifttt AND Nest thermostat. * AUTOMATE LAMP UPSTAIRS using Nest thermostat.
* Put Dash Buttons out there. * Put Dash Buttons out there.
* Put door sensor on garage door * Put door sensor on garage door
@@ -32,3 +32,19 @@ Then simply use that in your light turn off automation:
data: data:
entity_id: light.hue_color_lamp_1 entity_id: light.hue_color_lamp_1
- automation:
alias: Random GLeft
initial_state: False
hide_entity: False
trigger:
platform: time
seconds: '/5'
action:
service: homeassistant.turn_on
entity_id:
- light.gright
data:
effect: random
transition: 1
brightness: 255`

View File

@@ -2,9 +2,6 @@
- alias: 'GoodNight - Away Mode' - alias: 'GoodNight - Away Mode'
trigger: trigger:
- platform: state
entity_id: group.family
state: 'not_home'
- platform: event - platform: event
event_type: good_night event_type: good_night

View File

@@ -0,0 +1,15 @@
# Uses the Nest thermostat to turn on lights and turn them off.
- alias: 'Upstairs Light Turn'
trigger:
- platform: event
event_type: upstairs_light_on
condition:
condition: state
- platform: sun
event: sunset
action:
service: light.turn_on
entity_id: group.upstairs

View File

@@ -14,3 +14,13 @@
# - pressure # - pressure
# - visibility # - visibility
# - ozone # - ozone
- platform: nest
monitored_conditions:
- 'temperature'
- 'target'
- 'humidity'
- 'operation_mode'
- 'last_connection'
- 'co_status'
- 'smoke_status'