本帖最后由 jyz_0501 于 2021-3-23 21:37 编辑
米家门磁真是个好东西,某鱼可以40包邮到家,一块纽扣可以用几年没问题。
之前我有篇帖子 是github上的一篇文章,可以利用米家门磁实现很多,诸如加入雨滴传感器实现下雨检测等
一直在找两芯薄膜压力传感器,终于在论坛坛友的帮助下,发现了这个神器。
现在把成品拿出来看看吧。
从小米外壳上发现两个洞洞,又从板子上发现了GND 和供电,突然发现他两个的位置是对应的,尝试洞洞大小正好能穿过去。然后也不打算扩孔了,也不打算电烙铁了。
不过扩孔和焊接也不难,建议还是焊接吧,不焊接的话要注意绝缘不要短路。
实际过程很简单,不赘述了,自己看图吧。
薄膜感应开关是从深圳一老板手里拿的样品,各种尺寸都有。去1688上搜 鑫杰佳电子老板挺好。
有上车的可以找 @囧 。
[img]blob:https://bbs.hassbian.com/af1edbad-ed6d-4a1f-a82c-01a3abd7680d[/img]
小尺寸可以放在餐椅、书房座椅的垫子里,甚至枕头里面放一个。
大尺寸 可以放在沙发、妃位等垫子里。
甚至,马桶座圈上可以贴一个,做好防水。
在书房看书、在客厅看电视、拉臭臭还怕灯被关掉吗?
最后通过自定义 template binary_sensor判断有没有人
binary_sensor:
- platform: template
sensors:
studyroom_occupancy:
friendly_name: "Studyroom Occupancy"
unique_id: studyroom_occupancy
device_class: occupancy
value_template: >-
{{ is_state('binary_sensor.motion_sensor_158d000313cc12', 'on')
or is_state('binary_sensor.door_window_sensor_158d0001e5ead9', 'off')
or is_state('binary_sensor.macbookpro', 'on') }}
alias: 自动开关书房灯
description: ''
trigger:
- platform: state
entity_id: binary_sensor.studyroom_occupancy
from: 'on'
to: 'off'
- platform: state
entity_id: binary_sensor.studyroom_occupancy
from: 'off'
to: 'on'
condition: []
action:
- choose:
- conditions:
- condition: state
entity_id: binary_sensor.studyroom_occupancy
state: 'on'
- condition: numeric_state
entity_id: sensor.illumination_158d000313cc12
below: '10'
sequence:
- service: switch.turn_on
data: {}
entity_id: switch.sonoff_1000da9337
- conditions:
- condition: or
conditions:
- condition: state
entity_id: binary_sensor.studyroom_occupancy
state: 'off'
- condition: numeric_state
entity_id: sensor.illumination_158d000313cc12
above: '10'
sequence:
- service: switch.turn_off
data: {}
entity_id: switch.sonoff_1000da9337
default: []
mode: single
|