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.
@@ -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: 'Bticino', model: '3584C'}],
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};
@@ -0,0 +1,11 @@
1
+ const extend = require('../lib/extend');
2
+
3
+ module.exports = [
4
+ {
5
+ zigbeeModel: ['HK-DIM-SW'],
6
+ model: 'DMZ250',
7
+ vendor: 'Wisdom',
8
+ description: 'Zigbee led dimmer 5-250 Watt',
9
+ extend: extend.light_onoff_brightness(),
10
+ },
11
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "15.0.2",
3
+ "version": "15.0.3",
4
4
  "description": "Collection of device converters to be used with zigbee-herdsman",
5
5
  "main": "index.js",
6
6
  "files": [