zigbee-herdsman-converters 14.0.429 → 14.0.430
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/philips.js +10 -1
- package/devices/robb.js +4 -2
- package/npm-shrinkwrap.json +1 -1
- package/package.json +1 -1
package/devices/philips.js
CHANGED
|
@@ -2455,6 +2455,15 @@ module.exports = [
|
|
|
2455
2455
|
extend: hueExtend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
|
|
2456
2456
|
ota: ota.zigbeeOTA,
|
|
2457
2457
|
},
|
|
2458
|
+
{
|
|
2459
|
+
zigbeeModel: ['929003099301'],
|
|
2460
|
+
model: '929003099301',
|
|
2461
|
+
vendor: 'Philips',
|
|
2462
|
+
description: 'Hue white ambiance Aurelle round panel light',
|
|
2463
|
+
meta: {turnsOffAtBrightness1: true},
|
|
2464
|
+
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
2465
|
+
ota: ota.zigbeeOTA,
|
|
2466
|
+
},
|
|
2458
2467
|
{
|
|
2459
2468
|
zigbeeModel: ['3418331P6'],
|
|
2460
2469
|
model: '3418331P6',
|
|
@@ -2716,7 +2725,7 @@ module.exports = [
|
|
|
2716
2725
|
ota: ota.zigbeeOTA,
|
|
2717
2726
|
},
|
|
2718
2727
|
{
|
|
2719
|
-
zigbeeModel: ['915005997301'],
|
|
2728
|
+
zigbeeModel: ['915005997301', '915005997201'],
|
|
2720
2729
|
model: '915005997301',
|
|
2721
2730
|
vendor: 'Philips',
|
|
2722
2731
|
description: 'Hue Bluetooth white & color ambiance ceiling lamp Infuse medium',
|
package/devices/robb.js
CHANGED
|
@@ -139,9 +139,11 @@ module.exports = [
|
|
|
139
139
|
model: 'ROB_200-018-0',
|
|
140
140
|
vendor: 'ROBB',
|
|
141
141
|
description: 'ZigBee knob smart dimmer',
|
|
142
|
-
fromZigbee: [fz.command_on, fz.command_off, fz.command_move_to_level, fz.command_move_to_color_temp
|
|
143
|
-
|
|
142
|
+
fromZigbee: [fz.command_on, fz.command_off, fz.command_move_to_level, fz.command_move_to_color_temp, fz.battery,
|
|
143
|
+
fz.command_move_to_color],
|
|
144
|
+
exposes: [e.battery(), e.action(['on', 'off', 'brightness_move_to_level', 'color_temperature_move', 'color_move'])],
|
|
144
145
|
toZigbee: [],
|
|
146
|
+
meta: {multiEndpoint: true, battery: {dontDividePercentage: true}},
|
|
145
147
|
whiteLabel: [{vendor: 'Sunricher', model: 'SR-ZG2835'}],
|
|
146
148
|
},
|
|
147
149
|
{
|
package/npm-shrinkwrap.json
CHANGED