Advertisement
xangin

earthquake_automation linebot

Oct 11th, 2024
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.47 KB | None | 0 0
  1. alias: earthquake_automation
  2. description: 地震預報通知
  3. trigger:
  4.   - platform: webhook
  5.     allowed_methods:
  6.      - POST
  7.     local_only: true
  8.     webhook_id: trigger_ea_command
  9. condition: []
  10. action:
  11.   - variables:
  12.       lv: "{{ trigger.json.level[:1] | int }}"
  13.       time: "{{ trigger.json.seconds }}"
  14.   - alias: Line通知
  15.     action: rest_command.linebot_message
  16.     data:
  17.       who: "USERID"
  18.       msg_text: 警告!{{ lv }}級地震將在{{ time }}秒後抵達
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement