You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.0 KiB

#Todo List
# Break out configuration files. HASS user.
# AUTOMATE LAMP UPSTAIRS USING ifttt AND Nest thermostat.
# Put Dash Buttons out there.
# Put door sensor on garage door
### Future Ideas
# - alias: 'Get Random Time'
# trigger:
# platform: time
# after: '21:00:00'
# action:
# - service: input_slider.select_value
# data_template:
# entity_id: input_slider.hour
# value: '{{ (range(22, 23) | random) }}'
# - service: input_slider.select_value
# data_template:
# entity_id: input_slider.random_minute
# value: '{{ (range(30, 45) | random) }}'
# Then simply use that in your light turn off automation:
# - alias: 'Turn lights off'
# trigger:
# platform: template
# value_template: '{{ now.hour == (states.input_slider.random_hour.state | int) and now.minute == (states.input_slider.random_minute.state | int) }}'
# action:
# - service: light.turn_off
# data:
# entity_id: light.hue_color_lamp_1

Powered by TurnKey Linux.