本帖最后由 chaobt 于 2019-6-26 22:55 编辑
看到坛子里有人问动静贴的使用,正好我书房放了一个,每次坐到电竞椅上自动开显示器和电脑的电源,还是比较方便的。接入方式就是小米网关接入后自动接入。自动化具体代码如下:
automation:
- alias: 座椅震动时开电脑
trigger:
- platform: event
event_type: xiaomi_aqara.movement
event_data:
entity_id: binary_sensor.vibration_158d0001a768a1 #这里改成你的动静贴ID
movement_type: vibrate
- platform: event
event_type: xiaomi_aqara.movement
event_data:
entity_id: binary_sensor.vibration_158d0001a768a1
movement_type: tilt
condition:
condition: state
entity_id: switch.xian_shi_qi #显示器
state: 'off'
action:
service: switch.turn_on
entity_id: switch.xian_shi_qi,switch.bi_ji_ben_dian_nao #显示器,笔记本电脑
另外还有一些示范代码可做测试(非官方)供参考:
|