zigbee-herdsman-converters 14.0.551 → 14.0.552
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/devices/philips.js +1 -1
- package/devices/robb.js +12 -0
- package/devices/tuya.js +2 -0
- package/package.json +1 -1
package/devices/philips.js
CHANGED
|
@@ -2417,7 +2417,7 @@ module.exports = [
|
|
|
2417
2417
|
extend: hueExtend.light_onoff_brightness_colortemp_color(),
|
|
2418
2418
|
},
|
|
2419
2419
|
{
|
|
2420
|
-
zigbeeModel: ['1746330P7', '1746347P7'],
|
|
2420
|
+
zigbeeModel: ['1746330P7', '1746330V7', '1746347P7'],
|
|
2421
2421
|
model: '1746330P7',
|
|
2422
2422
|
vendor: 'Philips',
|
|
2423
2423
|
description: 'Hue Appear outdoor wall light',
|
package/devices/robb.js
CHANGED
|
@@ -88,6 +88,18 @@ module.exports = [
|
|
|
88
88
|
await reporting.onOff(endpoint);
|
|
89
89
|
},
|
|
90
90
|
},
|
|
91
|
+
{
|
|
92
|
+
zigbeeModel: ['ROB_200-030-0'],
|
|
93
|
+
model: 'ROB_200-030-0',
|
|
94
|
+
vendor: 'ROBB',
|
|
95
|
+
description: 'Zigbee AC in wall switch 400W (2-wire)',
|
|
96
|
+
extend: extend.switch(),
|
|
97
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
98
|
+
const endpoint = device.getEndpoint(1) || device.getEndpoint(3);
|
|
99
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff']);
|
|
100
|
+
await reporting.onOff(endpoint);
|
|
101
|
+
},
|
|
102
|
+
},
|
|
91
103
|
{
|
|
92
104
|
zigbeeModel: ['ROB_200-014-0'],
|
|
93
105
|
model: 'ROB_200-014-0',
|
package/devices/tuya.js
CHANGED
|
@@ -946,6 +946,8 @@ module.exports = [
|
|
|
946
946
|
fingerprint: [
|
|
947
947
|
{modelID: 'TS0201', manufacturerName: '_TZ3000_bguser20'},
|
|
948
948
|
{modelID: 'TS0201', manufacturerName: '_TZ3000_fllyghyj'},
|
|
949
|
+
{modelID: 'TS0201', manufacturerName: '_TZ3000_dowj6gyi'},
|
|
950
|
+
{modelID: 'TS0201', manufacturerName: '_TZ3000_yd2e749y'},
|
|
949
951
|
],
|
|
950
952
|
model: 'WSD500A',
|
|
951
953
|
vendor: 'TuYa',
|