zigbee-herdsman-converters 14.0.567 → 14.0.568
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 +2 -1
- package/devices/hive.js +3 -2
- package/devices/tuya.js +1 -0
- package/package.json +1 -1
package/devices/heiman.js
CHANGED
|
@@ -256,7 +256,8 @@ module.exports = [
|
|
|
256
256
|
exposes: [e.carbon_monoxide(), e.battery_low(), e.battery()],
|
|
257
257
|
},
|
|
258
258
|
{
|
|
259
|
-
fingerprint: [{modelID: 'TS0216', manufacturerName: '_TYZB01_8scntis1'}
|
|
259
|
+
fingerprint: [{modelID: 'TS0216', manufacturerName: '_TYZB01_8scntis1'},
|
|
260
|
+
{modelID: 'TS0216', manufacturerName: '_TYZB01_4obovpbi'}],
|
|
260
261
|
zigbeeModel: ['WarningDevice', 'WarningDevice-EF-3.0', 'SRHMP-I1'],
|
|
261
262
|
model: 'HS2WD-E',
|
|
262
263
|
vendor: 'HEIMAN',
|
package/devices/hive.js
CHANGED
|
@@ -91,7 +91,7 @@ module.exports = [
|
|
|
91
91
|
model: '1613V',
|
|
92
92
|
vendor: 'Hive',
|
|
93
93
|
description: 'Active plug',
|
|
94
|
-
fromZigbee: [fz.on_off, fz.metering
|
|
94
|
+
fromZigbee: [fz.on_off, fz.metering],
|
|
95
95
|
toZigbee: [tz.on_off],
|
|
96
96
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
97
97
|
const endpoint = device.getEndpoint(9);
|
|
@@ -99,8 +99,9 @@ module.exports = [
|
|
|
99
99
|
await reporting.onOff(endpoint);
|
|
100
100
|
await reporting.readMeteringMultiplierDivisor(endpoint);
|
|
101
101
|
await reporting.instantaneousDemand(endpoint);
|
|
102
|
+
await reporting.currentSummDelivered(endpoint);
|
|
102
103
|
},
|
|
103
|
-
exposes: [e.switch(), e.power(), e.energy()
|
|
104
|
+
exposes: [e.switch(), e.power(), e.energy()],
|
|
104
105
|
},
|
|
105
106
|
{
|
|
106
107
|
zigbeeModel: ['TWBulb01US'],
|
package/devices/tuya.js
CHANGED
|
@@ -406,6 +406,7 @@ module.exports = [
|
|
|
406
406
|
{modelID: 'TS0001', manufacturerName: '_TZ3000_qsp2pwtf'}],
|
|
407
407
|
model: 'WHD02',
|
|
408
408
|
vendor: 'TuYa',
|
|
409
|
+
whiteLabel: [{vendor: 'TuYa', model: 'iHSW02'}],
|
|
409
410
|
description: 'Wall switch module',
|
|
410
411
|
toZigbee: extend.switch().toZigbee.concat([tz.moes_power_on_behavior, tz.tuya_switch_type]),
|
|
411
412
|
fromZigbee: extend.switch().fromZigbee.concat([fz.moes_power_on_behavior, fz.tuya_switch_type]),
|