zigbee-herdsman-converters 15.0.63 → 15.0.65
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/acuity_brands_lighting.js +1 -1
- package/devices/gledopto.js +4 -0
- package/devices/philips.js +21 -0
- package/devices/ysrsai.js +4 -4
- package/package.json +1 -1
|
@@ -6,6 +6,6 @@ module.exports = [
|
|
|
6
6
|
model: 'WF4C_WF6C',
|
|
7
7
|
vendor: 'Acuity Brands Lighting (ABL)',
|
|
8
8
|
description: 'Juno 4" and 6" LED smart wafer downlight',
|
|
9
|
-
extend: extend.light_onoff_brightness_colortemp({colorTempRange: [200, 370]}),
|
|
9
|
+
extend: extend.light_onoff_brightness_colortemp({colorTempRange: [200, 370], disableColorTempStartup: true}),
|
|
10
10
|
},
|
|
11
11
|
];
|
package/devices/gledopto.js
CHANGED
|
@@ -152,6 +152,10 @@ module.exports = [
|
|
|
152
152
|
{ID: 12, profileID: 260, deviceID: 258, inputClusters: [0, 3, 4, 5, 6, 8, 768], outputClusters: []},
|
|
153
153
|
{ID: 13, profileID: 49246, deviceID: 57694, inputClusters: [4096], outputClusters: [4096]},
|
|
154
154
|
]},
|
|
155
|
+
{type: 'Router', manufacturerName: 'GLEDOPTO', modelID: 'GL-C-007', endpoints: [
|
|
156
|
+
{ID: 11, profileID: 260, deviceID: 269, inputClusters: [0, 3, 4, 5, 6, 8, 768, 4096], outputClusters: [25]},
|
|
157
|
+
{ID: 242, profileID: 41440, deviceID: 97, inputClusters: [], outputClusters: [33]},
|
|
158
|
+
]},
|
|
155
159
|
],
|
|
156
160
|
model: 'GL-C-007-1ID', // 1 ID controls white and color together
|
|
157
161
|
// Only enable disableDefaultResponse for the second fingerprint:
|
package/devices/philips.js
CHANGED
|
@@ -1046,6 +1046,27 @@ module.exports = [
|
|
|
1046
1046
|
description: 'Hue white ambiance Adore GU10 with Bluetooth (2 spots)',
|
|
1047
1047
|
extend: philips.extend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
1048
1048
|
},
|
|
1049
|
+
{
|
|
1050
|
+
zigbeeModel: ['3418031P6', '929003056301', '929003056301_01', '929003056301_02', '929003056301_03'],
|
|
1051
|
+
model: '3418031P6',
|
|
1052
|
+
vendor: 'Philips',
|
|
1053
|
+
description: 'Hue white ambiance Adore GU10 with Bluetooth (3 spots)',
|
|
1054
|
+
extend: philips.extend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
zigbeeModel: ['929003046801'],
|
|
1058
|
+
model: '33850000',
|
|
1059
|
+
vendor: 'Philips',
|
|
1060
|
+
description: 'Philips Hue white ambiance pillar spot (1 spot)',
|
|
1061
|
+
extend: philips.extend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
zigbeeModel: ['5633231P6'],
|
|
1065
|
+
model: '915005916901',
|
|
1066
|
+
vendor: 'Philips',
|
|
1067
|
+
description: 'Philips Hue white ambiance pillar double spot (2 spot) with Bluetooth',
|
|
1068
|
+
extend: philips.extend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
1069
|
+
},
|
|
1049
1070
|
{
|
|
1050
1071
|
zigbeeModel: ['3417711P6'],
|
|
1051
1072
|
model: '3417711P6',
|
package/devices/ysrsai.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const tuya = require('../lib/tuya');
|
|
2
2
|
|
|
3
3
|
module.exports = [
|
|
4
4
|
{
|
|
@@ -7,20 +7,20 @@ module.exports = [
|
|
|
7
7
|
model: 'YSR-MINI-01_rgbcct',
|
|
8
8
|
vendor: 'YSRSAI',
|
|
9
9
|
description: 'Zigbee LED controller (RGB+CCT)',
|
|
10
|
-
extend: extend.light_onoff_brightness_colortemp_color({
|
|
10
|
+
extend: tuya.extend.light_onoff_brightness_colortemp_color({colorTempRange: [160, 370]}),
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
zigbeeModel: ['ZB-CT01'],
|
|
14
14
|
model: 'YSR-MINI-01_wwcw',
|
|
15
15
|
vendor: 'YSRSAI',
|
|
16
16
|
description: 'Zigbee LED controller (WW/CW)',
|
|
17
|
-
extend: extend.light_onoff_brightness_colortemp_color(
|
|
17
|
+
extend: tuya.extend.light_onoff_brightness_colortemp_color(),
|
|
18
18
|
},
|
|
19
19
|
{
|
|
20
20
|
zigbeeModel: ['ZB-DL01'],
|
|
21
21
|
model: 'YSR-MINI-01_dimmer',
|
|
22
22
|
vendor: 'YSRSAI',
|
|
23
23
|
description: 'Zigbee LED controller (Dimmer)',
|
|
24
|
-
extend: extend.light_onoff_brightness(),
|
|
24
|
+
extend: tuya.extend.light_onoff_brightness(),
|
|
25
25
|
},
|
|
26
26
|
];
|