本帖最后由 natic 于 2020-11-6 23:09 编辑
由于前段时间成功接入马桶盖落座传感器到HA,基于Template Sensor的组合传感器可用性大大增强
传感器 |
作用 |
部署说明 |
入口绿米人体传感器 |
检测有人进入浴室 |
入口部署绿米最美观 |
淋浴区SR505微型人体传感器 |
检测是否有人在洗澡 |
SR505检测范围较小,不会检测到门外的人,响应灵敏 |
马桶盖落座传感器 |
检测是否有人在大小便 |
小鲸洗马桶盖,通过python-miio接入HA |
基于多个传感器的组合判断,只要其中任意一个触发就判断有人在活动
利用虚拟出来的组合传感器on/off状态控制开关灯,不再会因为拉屎洗澡灯而自动关机,近乎完美
binary_sensor:
- platform: template
sensors:
bathroom_occupancy:
friendly_name: "Bathroom Occupancy"
device_class: occupancy
value_template: >-
{{ not (is_state('binary_sensor.bathroom_motion_sensor', 'off')
and is_state('binary_sensor.shower_motion_sensor', 'off')
and is_state('binary_sensor.toilet_seat', 'off')) }}
|