本帖最后由 evantalk 于 2021-8-23 16:26 编辑
https://esphome.io/components/time.html?highlight=time
time:
- platform: sntp
# ...
on_time:
# Every 5 minutes
- seconds: 0
minutes: /5
then:
- switch.toggle: my_switch
# Every morning on weekdays
- seconds: 0
minutes: 30
hours: 7
days_of_week: MON-FRI
then:
- light.turn_on: my_light
# Cron syntax, trigger every 5 minutes
- cron: '* /5 * * * *'
then:
- switch.toggle: my_switch
你需要解决时间来源:HA,SNTP,GPS(硬件),DS1307(硬件) |