到达某地的自动化
automation:
- alias: arrive office
trigger:
platform: state
entity_id: device_tracker.your_phone
from: 'not_home'
to: 'office'
action:
- service: tts.baidu_say
data_template:
entity_id: media_player.vlc_player
message: >
"我刚刚到达公司。"
cache: false
离开某地的自动化
automation:
- alias: leave office
trigger:
platform: state
entity_id: device_tracker.your_phone
from: 'office'
to: 'not_home'
action:
- service: tts.baidu_say
data_template:
entity_id: media_player.vlc_player
message: >
"我刚刚离开公司。"
cache: false
|