zigbee-herdsman-converters 14.0.552 → 14.0.553
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/lidl.js +8 -0
- package/devices/paulmann.js +1 -1
- package/devices/schneider_electric.js +3 -2
- package/devices/tuya.js +5 -2
- package/package.json +1 -1
package/devices/lidl.js
CHANGED
|
@@ -486,6 +486,14 @@ module.exports = [
|
|
|
486
486
|
device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', {colorCapabilities: 29});
|
|
487
487
|
},
|
|
488
488
|
},
|
|
489
|
+
{
|
|
490
|
+
fingerprint: [{modelID: 'TS0505B', manufactureName: '_TZ3210_umi6vbsz'}],
|
|
491
|
+
model: '100341862',
|
|
492
|
+
vendor: 'Lidl',
|
|
493
|
+
description: 'Livarno Home LED-Flooder',
|
|
494
|
+
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500], disableColorTempStartup: true}),
|
|
495
|
+
meta: {applyRedFix: true, enhancedHue: false},
|
|
496
|
+
},
|
|
489
497
|
{
|
|
490
498
|
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_s8gkrkxk'}],
|
|
491
499
|
model: 'HG06467',
|
package/devices/paulmann.js
CHANGED
|
@@ -64,7 +64,7 @@ module.exports = [
|
|
|
64
64
|
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 370]}),
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
|
-
zigbeeModel: ['CCT light', 'CCT_light'],
|
|
67
|
+
zigbeeModel: ['CCT light', 'CCT_light', 'CCT light '],
|
|
68
68
|
model: '50064',
|
|
69
69
|
vendor: 'Paulmann',
|
|
70
70
|
description: 'SmartHome led spot',
|
|
@@ -194,8 +194,9 @@ module.exports = [
|
|
|
194
194
|
vendor: 'Schneider Electric',
|
|
195
195
|
description: 'Roller shutter',
|
|
196
196
|
fromZigbee: [fz.cover_position_tilt],
|
|
197
|
-
toZigbee: [tz.cover_position_tilt, tz.cover_state],
|
|
198
|
-
exposes: [e.cover_position()
|
|
197
|
+
toZigbee: [tz.cover_position_tilt, tz.cover_state, tzLocal.lift_duration],
|
|
198
|
+
exposes: [e.cover_position(), exposes.numeric('lift_duration', ea.STATE_SET).withUnit('seconds')
|
|
199
|
+
.withValueMin(0).withValueMax(300).withDescription('Duration of lift')],
|
|
199
200
|
meta: {coverInverted: true},
|
|
200
201
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
201
202
|
const endpoint = device.getEndpoint(5);
|
package/devices/tuya.js
CHANGED
|
@@ -467,7 +467,8 @@ module.exports = [
|
|
|
467
467
|
{modelID: 'TS0505B', manufacturerName: '_TZ3210_iwbaamgh'},
|
|
468
468
|
{modelID: 'TS0505B', manufacturerName: '_TZ3210_klv2wul0'},
|
|
469
469
|
{modelID: 'TS0505B', manufacturerName: '_TZ3210_rcggc0ys'},
|
|
470
|
-
{modelID: 'TS0505B', manufacturerName: '_TZ3210_s6zec0of'}
|
|
470
|
+
{modelID: 'TS0505B', manufacturerName: '_TZ3210_s6zec0of'},
|
|
471
|
+
{modelID: 'TS0505B', manufacturerName: '_TZ3210_y5fjkn7x'}],
|
|
471
472
|
model: 'TS0505B',
|
|
472
473
|
vendor: 'TuYa',
|
|
473
474
|
description: 'Zigbee RGB+CCT light',
|
|
@@ -809,10 +810,12 @@ module.exports = [
|
|
|
809
810
|
},
|
|
810
811
|
{
|
|
811
812
|
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_kyfqmmyl'},
|
|
812
|
-
{modelID: 'TS0601', manufacturerName: '_TZE200_2hf7x9n3'}
|
|
813
|
+
{modelID: 'TS0601', manufacturerName: '_TZE200_2hf7x9n3'},
|
|
814
|
+
{modelID: 'TS0601', manufacturerName: '_TZE200_bynnczcb'}],
|
|
813
815
|
model: 'TS0601_switch_3_gang',
|
|
814
816
|
vendor: 'TuYa',
|
|
815
817
|
description: '3 gang switch',
|
|
818
|
+
whiteLabel: [{vendor: 'NOVADIGITAL', model: 'WS-US-ZB', description: 'Interruptor touch Zigbee 3 Teclas'}],
|
|
816
819
|
exposes: [e.switch().withEndpoint('l1').setAccess('state', ea.STATE_SET),
|
|
817
820
|
e.switch().withEndpoint('l2').setAccess('state', ea.STATE_SET),
|
|
818
821
|
e.switch().withEndpoint('l3').setAccess('state', ea.STATE_SET)],
|