fjnt
(Javier)
May 1, 2017, 9:31pm
1
Hello. I want to make a automation to turn on the light at specific hour with a input_select but I don’t how to use the input_select as a time.
Thank you for your help!
ih8gates
(Scott Reston)
May 1, 2017, 10:02pm
2
This thread has pointers on triggering an automation based on input from a select:
I didn’t find a component to create an alarm clock for my difficult morning, so i implement that.
It’s composed with simple modules
input_boolean :
reveil:
name: Reveil positionné
initial: off
icon: mdi:alarm
lightreveil:
name: Reveil Naturel
initial: off
icon: mdi:theme-light-dark
We declare 2 input_boolean to turn on the TV and to turn on bedroom’s light
input_select:
choixreveil:
name: "reveil matin"
icon: mdi:alarm
initial: "06:35"
op…