Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- earthquake_alert:
- alias: 地震分級腳本
- variables:
- lv: "{{ level[:1] | int }}"
- sequence:
- - choose:
- - conditions:
- - "{{ lv <= 3 }}"
- sequence:
- #當地震小於等於3級要做的事情放在此
- - service: notify.line_notify
- data:
- message: '警告!{{ lv }}級地震將在{{ seconds }}秒後抵達'
- - conditions:
- - "{{ lv >3 }}"
- sequence:
- #當地震大於3級要做的事情放在此
- - service: notify.line_notify
- data:
- message: '警告!{{ lv }}級地震將在{{ seconds }}秒後抵達'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement