- 积分
- 167
- 金钱
- 124
- 威望
- 0
- 贡献
- 0
- HASS币
- 0
注册会员
- 积分
- 167
- 金钱
- 124
- HASS币
- 0
|
我的开关是绿米T1 单火双键。目前根据https://bbs.hassbian.com/thread-13030-1-1.html以及Z2M作者的说明,已经成功把开关直接接入z2m网关了。但是有个问题在网页上或者homekit中只能控制左键上的设备,右键设备不能控制,请问我好需要怎么写配置文件呢?想找点资料学习下关于配置文件的说明,希望有大佬可以指点一二。谢谢。
配置文件如下:
{
zigbeeModel: ['lumi.switch.b2lacn01'],
model: 'QBKG18LM',
vendor: 'Aqara',
description: '双键开关',
fromZigbee: [fz.on_off, fz.xiaomi_on_off_action, fz.xiaomi_on_off_ignore_endpoint_4_5_6, fz.xiaomi_operation_mode_basic],
exposes: [e.switch().withEndpoint('left'), e.switch().withEndpoint('right'), e.action(['single_left', 'single_right', 'single_both'])],
toZigbee: [tz.on_off, tz.xiaomi_power],
meta: {multiEndpoint: true, configureKey: 1},
endpoint: (device) => {
return {'system': 1, 'left': 2, 'right': 3};
},
configure: async (device, coordinatorEndpoint, logger) => {
device.type = 'EndDevice';
device.save();
},
},
|
|