zigbee-herdsman-converters 15.0.2 → 15.0.3
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/legrand.js +2 -1
- package/devices/tuya.js +1 -1
- package/devices/wisdom.js +11 -0
- package/package.json +1 -1
package/devices/legrand.js
CHANGED
|
@@ -262,7 +262,7 @@ module.exports = [
|
|
|
262
262
|
ota: ota.zigbeeOTA,
|
|
263
263
|
fromZigbee: [fz.identify, fz.on_off],
|
|
264
264
|
toZigbee: [tz.on_off, tz.legrand_identify],
|
|
265
|
-
whiteLabel: [{vendor: '
|
|
265
|
+
whiteLabel: [{vendor: 'BTicino', model: '3584C'}],
|
|
266
266
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
267
267
|
const endpoint = device.getEndpoint(1);
|
|
268
268
|
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'genBinaryInput']);
|
|
@@ -278,6 +278,7 @@ module.exports = [
|
|
|
278
278
|
exposes: [e.battery(), e.action(['enter', 'leave', 'sleep', 'wakeup', 'center'])],
|
|
279
279
|
toZigbee: [],
|
|
280
280
|
meta: {battery: {voltageToPercentage: '3V_2500'}},
|
|
281
|
+
whiteLabel: [{vendor: 'BTicino', model: 'LN4570CWI'}],
|
|
281
282
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
282
283
|
const endpoint = device.getEndpoint(1);
|
|
283
284
|
await reporting.bind(endpoint, coordinatorEndpoint, ['genIdentify', 'genPowerCfg']);
|
package/devices/tuya.js
CHANGED
|
@@ -931,7 +931,7 @@ module.exports = [
|
|
|
931
931
|
model: 'TS011F_2_gang_wall',
|
|
932
932
|
vendor: 'TuYa',
|
|
933
933
|
description: '2 gang wall outlet',
|
|
934
|
-
extend: tuya.extend.switch({backlightMode: true, endpoints: ['l1', 'l2']}),
|
|
934
|
+
extend: tuya.extend.switch({backlightMode: true, childLock: true, endpoints: ['l1', 'l2']}),
|
|
935
935
|
whiteLabel: [{vendor: 'ClickSmart+', model: 'CMA30036'}],
|
|
936
936
|
endpoint: (device) => {
|
|
937
937
|
return {'l1': 1, 'l2': 2};
|