zigbee-herdsman-converters 14.0.479 → 14.0.480
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/converters/fromZigbee.js +1 -1
- package/devices/lidl.js +11 -0
- package/devices/tuya.js +1 -1
- package/package.json +1 -1
package/converters/fromZigbee.js
CHANGED
|
@@ -5539,7 +5539,7 @@ const converters = {
|
|
|
5539
5539
|
// The occupancy sensor only sends a message when motion detected.
|
|
5540
5540
|
// Therefore we need to publish the no_motion detected by ourselves.
|
|
5541
5541
|
let timeout = meta && meta.state && meta.state.hasOwnProperty('detection_interval') ?
|
|
5542
|
-
meta.state.detection_interval : 60;
|
|
5542
|
+
meta.state.detection_interval : ['RTCGQ14LM'].includes(model.model) ? 30 : 60;
|
|
5543
5543
|
timeout = options && options.hasOwnProperty('occupancy_timeout') && options.occupancy_timeout >= timeout ?
|
|
5544
5544
|
options.occupancy_timeout : timeout + 2;
|
|
5545
5545
|
|
package/devices/lidl.js
CHANGED
|
@@ -496,6 +496,17 @@ module.exports = [
|
|
|
496
496
|
device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', {colorCapabilities: 29});
|
|
497
497
|
},
|
|
498
498
|
},
|
|
499
|
+
{
|
|
500
|
+
fingerprint: [{modelID: 'TS0504B', manufacturerName: '_TZ3210_sroezl0s'}],
|
|
501
|
+
model: '14153806L',
|
|
502
|
+
vendor: 'Lidl',
|
|
503
|
+
description: 'Livarno smart LED ceiling light',
|
|
504
|
+
...extend.light_onoff_brightness_colortemp_color({disableColorTempStartup: true, colorTempRange: [153, 500]}),
|
|
505
|
+
meta: {applyRedFix: true, enhancedHue: false},
|
|
506
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
507
|
+
device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', {colorCapabilities: 29});
|
|
508
|
+
},
|
|
509
|
+
},
|
|
499
510
|
{
|
|
500
511
|
fingerprint: [{modelID: 'TS0505B', manufacturerName: '_TZ3210_r0xgkft5'}],
|
|
501
512
|
model: '14156506L',
|
package/devices/tuya.js
CHANGED
|
@@ -281,6 +281,7 @@ module.exports = [
|
|
|
281
281
|
{modelID: 'TS0505B', manufacturerName: '_TZ3210_leyz4rju'},
|
|
282
282
|
{modelID: 'TS0505B', manufacturerName: '_TZ3210_jd3z4yig'},
|
|
283
283
|
{modelID: 'TS0505B', manufacturerName: '_TZ3210_dgdjiw1c'},
|
|
284
|
+
{modelID: 'TS0505B', manufacturerName: '_TZ3210_mzdax7ha'},
|
|
284
285
|
{modelID: 'TS0505B', manufacturerName: '_TZ3210_a4s41wm4'},
|
|
285
286
|
{modelID: 'TS0505B', manufacturerName: '_TZ3210_qxenlrin'}],
|
|
286
287
|
model: 'TS0505B',
|
|
@@ -310,7 +311,6 @@ module.exports = [
|
|
|
310
311
|
{
|
|
311
312
|
fingerprint: [{modelID: 'TS0504B', manufacturerName: '_TZ3000_ukuvyhaa'},
|
|
312
313
|
{modelID: 'TS0504B', manufacturerName: '_TZ3210_bfvybixd'},
|
|
313
|
-
{modelID: 'TS0504B', manufacturerName: '_TZ3210_sroezl0s'},
|
|
314
314
|
{modelID: 'TS0504B', manufacturerName: '_TZ3210_i2i0bsnv'},
|
|
315
315
|
{modelID: 'TS0504B', manufacturerName: '_TZ3210_1elppmba'}],
|
|
316
316
|
model: 'TS0504B',
|