Home Assistant Setup
- Docker based installation
- Unbuntu OS
- Wyze Vacuum integration via HACS
- Using the following as guidance: GitHub - romedtino/simple-wyze-vac: Home Assistant Custom Component for Wyze Vacuum
After installing, restarting, and creating the below routine, the automation doesn’t run (and without any errors in the homeassistant.log file.
- id: vacuumTimeBased1
alias: "Run vacuum at certain time"
trigger:
- at: "10:36:00"
platform: time
action:
- service: vacuum.send_command
data:
command: sweep_auto
target:
entity_id: vacuum.vacuum
Not really sure where I went wrong, its a pretty simple test to see if the vacuum will be kicked off at a specific time.
Any thoughts?