zigbee-herdsman-converters 14.0.432 → 14.0.433
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/adurosmart.js +7 -0
- package/devices/gledopto.js +7 -0
- package/devices/trust.js +1 -1
- package/lib/exposes.js +1 -0
- package/npm-shrinkwrap.json +1 -1
- package/package.json +1 -1
package/devices/adurosmart.js
CHANGED
|
@@ -44,6 +44,13 @@ module.exports = [
|
|
|
44
44
|
return {'default': 2};
|
|
45
45
|
},
|
|
46
46
|
},
|
|
47
|
+
{
|
|
48
|
+
zigbeeModel: ['AD-E14RGBW3001'],
|
|
49
|
+
model: '81895',
|
|
50
|
+
vendor: 'AduroSmart',
|
|
51
|
+
description: 'ERIA E14 Candle Color',
|
|
52
|
+
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
|
|
53
|
+
},
|
|
47
54
|
{
|
|
48
55
|
zigbeeModel: ['Adurolight_NCC'],
|
|
49
56
|
model: '81825',
|
package/devices/gledopto.js
CHANGED
|
@@ -672,4 +672,11 @@ module.exports = [
|
|
|
672
672
|
description: 'Zigbee 3.0 smart home switch',
|
|
673
673
|
extend: gledoptoExtend.switch(),
|
|
674
674
|
},
|
|
675
|
+
{
|
|
676
|
+
zigbeeModel: ['GL-B-004P'],
|
|
677
|
+
model: 'GL-B-004P',
|
|
678
|
+
vendor: 'Gledopto',
|
|
679
|
+
description: 'Filament LED light bulb E27 G95 7W pro',
|
|
680
|
+
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [158, 495]}),
|
|
681
|
+
},
|
|
675
682
|
];
|
package/devices/trust.js
CHANGED
|
@@ -26,7 +26,7 @@ module.exports = [
|
|
|
26
26
|
vendor: 'Trust',
|
|
27
27
|
description: 'Remote control',
|
|
28
28
|
fromZigbee: [fz.command_on, fz.command_off_with_effect, fz.legacy.ZYCT202_stop, fz.legacy.ZYCT202_up_down],
|
|
29
|
-
exposes: [e.action(['on', 'off', 'stop', 'brightness_stop', 'brightness_move_up', 'brightness_move_down'])],
|
|
29
|
+
exposes: [e.action(['on', 'off', 'stop', 'brightness_stop', 'brightness_move_up', 'brightness_move_down']), e.action_group()],
|
|
30
30
|
toZigbee: [],
|
|
31
31
|
// Device does not support battery: https://github.com/Koenkk/zigbee2mqtt/issues/5928
|
|
32
32
|
},
|
package/lib/exposes.js
CHANGED
|
@@ -503,6 +503,7 @@ module.exports = {
|
|
|
503
503
|
presets: {
|
|
504
504
|
ac_frequency: () => new Numeric('ac_frequency', access.STATE).withUnit('Hz').withDescription('Measured electrical AC frequency'),
|
|
505
505
|
action: (values) => new Enum('action', access.STATE, values).withDescription('Triggered action (e.g. a button click)'),
|
|
506
|
+
action_group: (values) => new Numeric('action_group', access.STATE).withDescription('Group where the action was triggered on'),
|
|
506
507
|
angle: (name) => new Numeric(name, access.STATE).withValueMin(-360).withValueMax(360).withUnit('°'),
|
|
507
508
|
angle_axis: (name) => new Numeric(name, access.STATE).withValueMin(-90).withValueMax(90).withUnit('°'),
|
|
508
509
|
aqi: () => new Numeric('aqi', access.STATE).withDescription('Air quality index'),
|
package/npm-shrinkwrap.json
CHANGED