zigbee-herdsman-converters 14.0.297 → 14.0.298
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/heiman.js +1 -0
- package/devices/philips.js +14 -0
- package/devices/tuya.js +2 -1
- package/npm-shrinkwrap.json +1 -1
- package/package.json +1 -1
package/devices/heiman.js
CHANGED
|
@@ -10,6 +10,7 @@ const ea = exposes.access;
|
|
|
10
10
|
|
|
11
11
|
module.exports = [
|
|
12
12
|
{
|
|
13
|
+
fingerprint: [{modelID: 'TS0212', manufacturerName: '_TYZB01_wpmo3ja3'}],
|
|
13
14
|
zigbeeModel: ['CO_V15', 'CO_YDLV10', 'CO_V16', '1ccaa94c49a84abaa9e38687913947ba'],
|
|
14
15
|
model: 'HS1CA-M',
|
|
15
16
|
description: 'Smart carbon monoxide sensor',
|
package/devices/philips.js
CHANGED
|
@@ -1769,6 +1769,20 @@ module.exports = [
|
|
|
1769
1769
|
},
|
|
1770
1770
|
ota: ota.zigbeeOTA,
|
|
1771
1771
|
},
|
|
1772
|
+
{
|
|
1773
|
+
zigbeeModel: ['LOM007'],
|
|
1774
|
+
model: '929003050601',
|
|
1775
|
+
vendor: 'Philips',
|
|
1776
|
+
description: 'Hue smart plug',
|
|
1777
|
+
extend: extend.switch(),
|
|
1778
|
+
toZigbee: [tz.on_off].concat([tz.hue_power_on_behavior, tz.hue_power_on_error]),
|
|
1779
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
1780
|
+
const endpoint = device.getEndpoint(11);
|
|
1781
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff']);
|
|
1782
|
+
await reporting.onOff(endpoint);
|
|
1783
|
+
},
|
|
1784
|
+
ota: ota.zigbeeOTA,
|
|
1785
|
+
},
|
|
1772
1786
|
{
|
|
1773
1787
|
zigbeeModel: ['LLC014'],
|
|
1774
1788
|
model: '7099860PH',
|
package/devices/tuya.js
CHANGED
|
@@ -152,7 +152,8 @@ module.exports = [
|
|
|
152
152
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_2b8f6cio'},
|
|
153
153
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_dl7cejts'},
|
|
154
154
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_qjqgmqxr'},
|
|
155
|
-
{modelID: 'TS0202', manufacturerName: '_TZ3000_mmtwjmaq'}
|
|
155
|
+
{modelID: 'TS0202', manufacturerName: '_TZ3000_mmtwjmaq'},
|
|
156
|
+
{modelID: 'WHD02', manufacturerName: '_TZ3000_hktqahrq'}],
|
|
156
157
|
model: 'TS0202',
|
|
157
158
|
vendor: 'TuYa',
|
|
158
159
|
description: 'Motion sensor',
|
package/npm-shrinkwrap.json
CHANGED