|
本帖最后由 neoyang 于 2021-11-5 01:09 编辑
在淘寶買了個 tuya zigbee 支持電量的智能插座如下圖.
想要接入 ha 的 zigbee2mqtt z2m,
系統無法自動抓到, 所以用 external_converters: 試著自行定義好, 再帶入
只可惜我的功力不夠, 在加入以下語法後只可 on/off , 拉不出電量以及其它參數.
不知那位大神可以幫忙糾錯, 感謝.
const definition =[
{
fingerprint: [{modelID: 'TS011F', manufacturerName: '_TZ3000_qxhvkvjo'}],
model: 'TS011F_plug',
vendor: 'tuyaa',
description: 'tuya plug with powermeter',
extend: extend.switch(),
meta: {multiEndpoint: true},
endpoint: (device) => {
return {'l1': 1, 'l2': 2, 'l3': 3};
},
exposes: [e.switch().withEndpoint('l1'), e.power().withEndpoint('l1'), e.energy().withEndpoint('l1')],
},
|
|