zigbee-herdsman-converters 15.0.8 → 15.0.9
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/ecodim.js +1 -1
- package/devices/heiman.js +5 -3
- package/devices/neo.js +1 -1
- package/devices/philips.js +7 -0
- package/devices/tuya.js +4 -2
- package/package.json +1 -1
package/devices/ecodim.js
CHANGED
|
@@ -124,7 +124,7 @@ module.exports = [
|
|
|
124
124
|
'brightness_move_down_3', 'brightness_stop_3', 'on_4', 'off_4', 'brightness_move_up_4', 'brightness_move_down_4',
|
|
125
125
|
'brightness_stop_4'])],
|
|
126
126
|
toZigbee: [],
|
|
127
|
-
meta: {multiEndpoint: true
|
|
127
|
+
meta: {multiEndpoint: true},
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
130
|
fingerprint: [{modelID: 'TS0501B', manufacturerName: '_TZ3210_yluvwhjc'}],
|
package/devices/heiman.js
CHANGED
|
@@ -39,18 +39,20 @@ module.exports = [
|
|
|
39
39
|
model: 'HS2SK',
|
|
40
40
|
description: 'Smart metering plug',
|
|
41
41
|
vendor: 'HEIMAN',
|
|
42
|
-
fromZigbee: [fz.on_off, fz.electrical_measurement],
|
|
42
|
+
fromZigbee: [fz.on_off, fz.electrical_measurement, fz.metering],
|
|
43
43
|
toZigbee: [tz.on_off],
|
|
44
44
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
45
45
|
const endpoint = device.getEndpoint(1);
|
|
46
|
-
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'haElectricalMeasurement']);
|
|
46
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'haElectricalMeasurement', 'seMetering']);
|
|
47
47
|
await reporting.onOff(endpoint);
|
|
48
48
|
await reporting.readEletricalMeasurementMultiplierDivisors(endpoint);
|
|
49
49
|
await reporting.rmsVoltage(endpoint);
|
|
50
50
|
await reporting.rmsCurrent(endpoint);
|
|
51
51
|
await reporting.activePower(endpoint);
|
|
52
|
+
await reporting.readMeteringMultiplierDivisor(endpoint);
|
|
53
|
+
await reporting.currentSummDelivered(endpoint);
|
|
52
54
|
},
|
|
53
|
-
exposes: [e.switch(), e.power(), e.current(), e.voltage()],
|
|
55
|
+
exposes: [e.switch(), e.power(), e.current(), e.voltage(), e.energy()],
|
|
54
56
|
},
|
|
55
57
|
{
|
|
56
58
|
fingerprint: [{modelID: 'SmartPlug-N', manufacturerName: 'HEIMAN'}],
|
package/devices/neo.js
CHANGED
|
@@ -58,7 +58,7 @@ module.exports = [
|
|
|
58
58
|
},
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
|
-
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_7hfcudw5'}
|
|
61
|
+
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_7hfcudw5'}],
|
|
62
62
|
model: 'NAS-PD07',
|
|
63
63
|
vendor: 'Neo',
|
|
64
64
|
description: 'Motion, temperature & humidity sensor',
|
package/devices/philips.js
CHANGED
|
@@ -2495,6 +2495,13 @@ module.exports = [
|
|
|
2495
2495
|
description: 'Hue White ambiance Buckram single spotlight with bluetooth',
|
|
2496
2496
|
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
2497
2497
|
},
|
|
2498
|
+
{
|
|
2499
|
+
zigbeeModel: ['5047130P6'],
|
|
2500
|
+
model: '5047130P6',
|
|
2501
|
+
vendor: 'Philips',
|
|
2502
|
+
description: 'Hue White ambiance Buckram single spotlight with bluetooth',
|
|
2503
|
+
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
2504
|
+
},
|
|
2498
2505
|
{
|
|
2499
2506
|
zigbeeModel: ['HML006'],
|
|
2500
2507
|
model: '7531609',
|
package/devices/tuya.js
CHANGED
|
@@ -927,7 +927,7 @@ module.exports = [
|
|
|
927
927
|
fingerprint: [{modelID: 'TS011F', manufacturerName: '_TZ3000_mvn6jl7x'},
|
|
928
928
|
{modelID: 'TS011F', manufacturerName: '_TZ3000_raviyuvk'}, {modelID: 'TS011F', manufacturerName: '_TYZB01_hlla45kx'},
|
|
929
929
|
{modelID: 'TS011F', manufacturerName: '_TZ3000_92qd4sqa'}, {modelID: 'TS011F', manufacturerName: '_TZ3000_zwaadvus'},
|
|
930
|
-
{modelID: 'TS011F', manufacturerName: '_TZ3000_k6fvknrr'}],
|
|
930
|
+
{modelID: 'TS011F', manufacturerName: '_TZ3000_k6fvknrr'}, {modelID: 'TS011F', manufacturerName: '_TZ3000_6s5dc9lx'}],
|
|
931
931
|
model: 'TS011F_2_gang_wall',
|
|
932
932
|
vendor: 'TuYa',
|
|
933
933
|
description: '2 gang wall outlet',
|
|
@@ -1094,6 +1094,9 @@ module.exports = [
|
|
|
1094
1094
|
{modelID: 'TS0202', manufacturerName: '_TZ3000_otvn3lne'},
|
|
1095
1095
|
{modelID: 'TS0202', manufacturerName: '_TZ3000_tiwq83wk'},
|
|
1096
1096
|
{modelID: 'TS0202', manufacturerName: '_TZ3000_ykwcwxmz'},
|
|
1097
|
+
// _TZ3000_kmh5qpmb = NAS-PD07 without temperature/humidity sensor
|
|
1098
|
+
// https://github.com/Koenkk/zigbee2mqtt/issues/15481#issuecomment-1366003011
|
|
1099
|
+
{modelID: 'TS0202', manufacturerName: '_TZ3000_kmh5qpmb'},
|
|
1097
1100
|
{modelID: 'TS0202', manufacturerName: '_TZ3000_hgu1dlak'},
|
|
1098
1101
|
{modelID: 'TS0202', manufacturerName: '_TZ3000_h4wnrtck'},
|
|
1099
1102
|
{modelID: 'WHD02', manufacturerName: '_TZ3000_hktqahrq'}],
|
|
@@ -1218,7 +1221,6 @@ module.exports = [
|
|
|
1218
1221
|
{modelID: 'TS0601', manufacturerName: '_TZE200_ojzhk75b'},
|
|
1219
1222
|
{modelID: 'TS0601', manufacturerName: '_TZE200_swaamsoy'},
|
|
1220
1223
|
{modelID: 'TS0601', manufacturerName: '_TZE200_3p5ydos3'},
|
|
1221
|
-
{modelID: 'TS0601', manufacturerName: '_TZE200_p0gzbqct'},
|
|
1222
1224
|
],
|
|
1223
1225
|
model: 'TS0601_dimmer',
|
|
1224
1226
|
vendor: 'TuYa',
|