I have a robot vacuum setup with Home Assistant. My idea is to have a drop down menu or a slider which let me set any time of day, and when this is active it will switch on the vacuum, and the slider/drop down will reset.
Is there any simple way to do this?
I want this because I usually close some door and move stuff around before leaving for work. And then I have to remember to start the vacuum manually.
Hi. Take a look at: Input_datetime initial value with time only (and the discussion around the issue)
This thread is what I finally used to get my “start coffee machine at a customisable time” automation going.
create an input_datetime for the time of day (text fields, not drop-down)
create a sensor with platform: time_date
create an automation that checks if the current time is the same as the input_datetime
I have a simple package that I use as a timer to turn on, off or toggle any entity I want
Then with automations I can for example tell HA to turn (on,off,toggle) my TV in X hours X minutes X seconds.
And for my kettle connected to a relay I have a dropdown menu (input_select) with MAX, MED and MIN that will turn the relay of after different minutes each.