在搞厨房的时候想到如果电磁炉忘记关了可能会有安全隐患,然后就想写一个倒计时,从电磁炉开关打开开始计时,超过规定时间自动关闭开关
然后就用了timer
在configuration.yaml文件中添加了如下代码
timer:
kitchen:
duration: '00:10:00'
自动化中写了
- alias: Timestart
id: 'Timerstart'
trigger:
- platform: state
entity_id: switch.chu_fang_kai_guan
to: 'on'
action:
- service: timer.start
entity_id: timer.kitchen
- alias: Timerstop
id: 'Timerstop'
trigger:
- platform: event
event_type: timer.finished
event_data:
entity_id: timer.kitchen
avtion:
- service: switch.turn_off
entity_id:
- switch.chu_fang_kai_guan
但是在自动化窗口中只显示了Timerstart,而Timerstop并没有显示在自动化窗口中
请问各位哪里写错了呀,新手小白,望各位多多指点
|