zigbee-herdsman-converters 14.0.623 → 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/heiman.js +14 -0
- package/devices/m/303/274ller_licht.js +1 -1
- package/devices/tuya.js +2 -1
- package/package.json +1 -1
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',
|
|
@@ -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',
|