zigbee-herdsman-converters 14.0.348 → 14.0.349
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/ksentry.js +1 -2
- package/devices/ledvance.js +8 -0
- package/index.js +1 -3
- package/npm-shrinkwrap.json +1 -1
- package/package.json +1 -1
package/devices/ksentry.js
CHANGED
|
@@ -6,8 +6,7 @@ module.exports = [
|
|
|
6
6
|
zigbeeModel: ['Lamp_01'],
|
|
7
7
|
model: 'KS-SM001',
|
|
8
8
|
vendor: 'Ksentry Electronics',
|
|
9
|
-
description: '
|
|
10
|
-
'/pdtl/ZigBee-module/1162731630/zigbee-on-off-controller-modules.htm)',
|
|
9
|
+
description: 'Zigbee on/off controller',
|
|
11
10
|
extend: extend.switch(),
|
|
12
11
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
13
12
|
const endpoint = device.getEndpoint(11);
|
package/devices/ledvance.js
CHANGED
|
@@ -98,4 +98,12 @@ module.exports = [
|
|
|
98
98
|
extend: extend.ledvance.light_onoff_brightness_colortemp_color({colorTempRange: [153, 526]}),
|
|
99
99
|
ota: ota.ledvance,
|
|
100
100
|
},
|
|
101
|
+
{
|
|
102
|
+
zigbeeModel: ['Tibea TW Z3'],
|
|
103
|
+
model: '4058075168572',
|
|
104
|
+
vendor: 'LEDVANCE',
|
|
105
|
+
description: 'SMART+ lamp E27 turntable white',
|
|
106
|
+
extend: extend.ledvance.light_onoff_brightness_colortemp({colorTempRange: [153, 370]}),
|
|
107
|
+
ota: ota.ledvance,
|
|
108
|
+
},
|
|
101
109
|
];
|
package/index.js
CHANGED
|
@@ -75,9 +75,7 @@ function addDefinition(definition) {
|
|
|
75
75
|
};
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
|
|
79
|
-
definition.toZigbee.push(tz.scene_store, tz.scene_recall, tz.scene_add, tz.scene_remove, tz.scene_remove_all, tz.read, tz.write);
|
|
80
|
-
}
|
|
78
|
+
definition.toZigbee.push(tz.scene_store, tz.scene_recall, tz.scene_add, tz.scene_remove, tz.scene_remove_all, tz.read, tz.write);
|
|
81
79
|
|
|
82
80
|
if (definition.exposes) {
|
|
83
81
|
definition.exposes = definition.exposes.concat([exposes.presets.linkquality()]);
|
package/npm-shrinkwrap.json
CHANGED