zigbee-herdsman-converters 14.0.622 → 14.0.624
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/enocean.js +1 -0
- package/devices/heiman.js +14 -0
- package/devices/ikea.js +7 -0
- package/devices/m/303/274ller_licht.js +1 -1
- package/devices/tuya.js +2 -1
- package/package.json +1 -1
package/devices/enocean.js
CHANGED
|
@@ -18,6 +18,7 @@ module.exports = [
|
|
|
18
18
|
{vendor: 'Vimar', description: 'Zigbee Friends of Hue RF switch', model: '03906'},
|
|
19
19
|
{vendor: 'Sunricher', model: 'SR-ZGP2801K4-FOH-E'},
|
|
20
20
|
{vendor: 'LED Trading', model: '9125'},
|
|
21
|
+
{vendor: 'Feller', description: 'Smart light control for Philips Hue', model: '4120.2.S.FMI.61'},
|
|
21
22
|
],
|
|
22
23
|
},
|
|
23
24
|
{
|
package/devices/heiman.js
CHANGED
|
@@ -444,6 +444,20 @@ module.exports = [
|
|
|
444
444
|
await reporting.batteryPercentageRemaining(endpoint);
|
|
445
445
|
},
|
|
446
446
|
},
|
|
447
|
+
{
|
|
448
|
+
fingerprint: [{modelID: 'ColorDimmerSw-EM-3.0', manufacturerName: 'HEIMAN'}],
|
|
449
|
+
model: 'HS2WDSR-E',
|
|
450
|
+
vendor: 'HEIMAN',
|
|
451
|
+
description: 'Remote dimmer and color control',
|
|
452
|
+
fromZigbee: [fz.battery, fz.command_on, fz.command_off, fz.command_move, fz.command_stop, fz.command_move_to_color],
|
|
453
|
+
exposes: [e.battery(), e.action(['on', 'off', 'move', 'stop', 'color_move'])],
|
|
454
|
+
toZigbee: [],
|
|
455
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
456
|
+
const endpoint = device.getEndpoint(1);
|
|
457
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg', 'genOnOff', 'genLevelCtrl', 'lightingColorCtrl']);
|
|
458
|
+
await reporting.batteryPercentageRemaining(endpoint, {min: constants.repInterval.MINUTES_5, max: constants.repInterval.HOUR});
|
|
459
|
+
},
|
|
460
|
+
},
|
|
447
461
|
{
|
|
448
462
|
zigbeeModel: ['GASSensor-EM'],
|
|
449
463
|
model: 'HS1CG-E',
|
package/devices/ikea.js
CHANGED
|
@@ -954,4 +954,11 @@ module.exports = [
|
|
|
954
954
|
description: 'STOFTMOLN ceiling/wall lamp 37 warm light dimmable',
|
|
955
955
|
extend: tradfriExtend.light_onoff_brightness(),
|
|
956
956
|
},
|
|
957
|
+
{
|
|
958
|
+
zigbeeModel: ['STOFTMOLN ceiling/wall lamp WW24'],
|
|
959
|
+
model: 'T2035',
|
|
960
|
+
vendor: 'IKEA',
|
|
961
|
+
description: 'STOFTMOLN ceiling/wall lamp 24 warm light dimmable',
|
|
962
|
+
extend: tradfriExtend.light_onoff_brightness(),
|
|
963
|
+
},
|
|
957
964
|
];
|
|
@@ -149,7 +149,7 @@ module.exports = [
|
|
|
149
149
|
},
|
|
150
150
|
{
|
|
151
151
|
zigbeeModel: ['tint-Remote-white'],
|
|
152
|
-
model: '404022',
|
|
152
|
+
model: '404022/404049C',
|
|
153
153
|
description: 'Tint dim remote control',
|
|
154
154
|
vendor: 'Müller Licht',
|
|
155
155
|
fromZigbee: [fz.command_on, fz.command_off, fz.command_step, fz.command_move, fz.command_stop, fz.command_move_to_color_temp],
|
package/devices/tuya.js
CHANGED
|
@@ -3271,7 +3271,8 @@ module.exports = [
|
|
|
3271
3271
|
},
|
|
3272
3272
|
},
|
|
3273
3273
|
{
|
|
3274
|
-
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_0u3bj3rc'}
|
|
3274
|
+
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_0u3bj3rc'},
|
|
3275
|
+
{modelID: 'TS0601', manufacturerName: '_TZE200_v6ossqfy'}],
|
|
3275
3276
|
model: 'TS0601_human_presence_sensor',
|
|
3276
3277
|
vendor: 'TuYa',
|
|
3277
3278
|
description: 'Human presence sensor Zigbee',
|