本帖最后由 logsxy 于 2018-8-27 15:55 编辑
出处1https://bbs.hassbian.com/thread-1836-1-1.html
出处2https://bbs.hassbian.com/thread-3669-1-1.html
1、MQTT配置
configuration.yaml文件加入
mqtt:
broker: 127.0.0.1
port: 1883
client_id: home-assistant-1
keepalive: 60
username: mqtt
password: mqtt
protocol: 3.1.1
2、在sensor下写入
这里需要注意,如果体重秤单位设置的是千克,没有问题。
如果设置的是“斤”,改下吧
- platform: mqtt
name: "miscale"
state_topic: "miscale/weight/jin"
value_template: "{{ value }}"
unit_of_measurement: "斤"
到此通过Mqtt接入蓝牙体重秤完成
3、小爱音箱接入HA更坑,账号1登录不上需要验证码,
可以换个账号2,这时小爱能用了,然后再换回账号1,激活完毕。
4、小爱播报体重自动化
- alias: miscale
trigger:
- platform: state
entity_id: sensor.miscale
action:
- service: hello_miai.send
data_template:
message: "您的体重是{{states('sensor.miscale')}}斤"
5、循环激活时间以下以10秒为例
*/01 * * * * root python3 /usr/local/bin/miscalegw.py
*/01 * * * * root sleep 10 && python3 /usr/local/bin/miscalegw.py
*/01 * * * * root sleep 20 && python3 /usr/local/bin/miscalegw.py
*/01 * * * * root sleep 30 && python3 /usr/local/bin/miscalegw.py
*/01 * * * * root sleep 40 && python3 /usr/local/bin/miscalegw.py
*/01 * * * * root sleep 50 && python3 /usr/local/bin/miscalegw.py
|