- alias: 'Motion detected' #运动检测
trigger:
payload: 'ON'
platform: mqtt
topic: myhome/mycamera/motion
action:
service: notify.ios__iphone
data:
title: "Motion"
message: "detected."
- alias: 'Start motion detection when not at home' #不在家时开始运动检测
trigger:
platform: zone
event: leave
zone: zone.home
entity_id: switch.dafang_motion_tracking
action:
service: switch.turn_on
data:
entity_id: switch.dafang_motion_detection
- alias: 'Stop motion detection when at home' #在家时停止运动检测
trigger:
platform: zone
event: enter
zone: zone.home
entity_id: switch.dafang_motion_tracking
action:
service: switch.turn_off
data:
entity_id: switch.dafang_motion_detection