zigbee-herdsman-converters 14.0.504 → 14.0.505
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/moes.js +1 -1
- package/devices/philips.js +9 -0
- package/devices/tuya.js +2 -1
- package/devices/villeroy_boch.js +11 -0
- package/package.json +1 -1
package/devices/moes.js
CHANGED
|
@@ -165,7 +165,7 @@ module.exports = [
|
|
|
165
165
|
},
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
|
-
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_tz32mtza'}],
|
|
168
|
+
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_tz32mtza'}, {modelID: 'TS0601', manufacturerName: '_TZE200_vm1gyrso'}],
|
|
169
169
|
model: 'ZTS-EU_3gang',
|
|
170
170
|
vendor: 'Moes',
|
|
171
171
|
description: 'Wall touch light switch (3 gang)',
|
package/devices/philips.js
CHANGED
|
@@ -1406,6 +1406,15 @@ module.exports = [
|
|
|
1406
1406
|
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
1407
1407
|
ota: ota.zigbeeOTA,
|
|
1408
1408
|
},
|
|
1409
|
+
{
|
|
1410
|
+
zigbeeModel: ['929003055501'],
|
|
1411
|
+
model: '929003055501',
|
|
1412
|
+
vendor: 'Philips',
|
|
1413
|
+
description: 'Hue white ambiance Still',
|
|
1414
|
+
meta: {turnsOffAtBrightness1: true},
|
|
1415
|
+
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
1416
|
+
ota: ota.zigbeeOTA,
|
|
1417
|
+
},
|
|
1409
1418
|
{
|
|
1410
1419
|
zigbeeModel: ['LTC003'],
|
|
1411
1420
|
model: '3261331P7',
|
package/devices/tuya.js
CHANGED
|
@@ -13,7 +13,7 @@ const utils = require('../lib/utils');
|
|
|
13
13
|
const TS011Fplugs = ['_TZ3000_5f43h46b', '_TZ3000_cphmq0q7', '_TZ3000_dpo1ysak', '_TZ3000_ew3ldmgx', '_TZ3000_gjnozsaz',
|
|
14
14
|
'_TZ3000_jvzvulen', '_TZ3000_mraovvmm', '_TZ3000_nfnmi125', '_TZ3000_ps3dmato', '_TZ3000_w0qqde0g', '_TZ3000_u5u4cakc',
|
|
15
15
|
'_TZ3000_rdtixbnu', '_TZ3000_typdpbpg', '_TZ3000_kx0pris5', '_TZ3000_amdymr7l', '_TZ3000_z1pnpsdo', '_TZ3000_ksw8qtmt',
|
|
16
|
-
'_TZ3000_nzkqcvvs', '_TZ3000_1h2x4akh', '_TZ3000_9vo5icau'];
|
|
16
|
+
'_TZ3000_nzkqcvvs', '_TZ3000_1h2x4akh', '_TZ3000_9vo5icau', '_TZ3000_cehuw1lw'];
|
|
17
17
|
|
|
18
18
|
const tzLocal = {
|
|
19
19
|
TS0504B_color: {
|
|
@@ -700,6 +700,7 @@ module.exports = [
|
|
|
700
700
|
{modelID: 'TS0502B', manufacturerName: '_TZ3210_zwqnazkb'},
|
|
701
701
|
{modelID: 'TS0502B', manufacturerName: '_TZ3210_ijsj2evj'},
|
|
702
702
|
{modelID: 'TS0502B', manufacturerName: '_TZ3210_pgq2qvyv'},
|
|
703
|
+
{modelID: 'TS0502B', manufacturerName: '_TZ3210_nvaik6gk'},
|
|
703
704
|
],
|
|
704
705
|
model: 'TS0502B',
|
|
705
706
|
vendor: 'TuYa',
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
const extend = require('../lib/extend');
|
|
2
|
+
|
|
3
|
+
module.exports = [
|
|
4
|
+
{
|
|
5
|
+
zigbeeModel: ['5991711'],
|
|
6
|
+
model: 'C5850000',
|
|
7
|
+
vendor: 'Villeroy & Boch',
|
|
8
|
+
description: 'Subway 3.0 Zigbee home Aautomation kit ',
|
|
9
|
+
extend: extend.light_onoff_brightness_colortemp({colorTempRange: [160, 450]}),
|
|
10
|
+
},
|
|
11
|
+
];
|