zigbee-herdsman-converters 14.0.621 → 14.0.623

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.
@@ -46,6 +46,19 @@ module.exports = [
46
46
  await reporting.onOff(endpoint);
47
47
  },
48
48
  },
49
+ {
50
+ zigbeeModel: ['43113'],
51
+ model: '43113',
52
+ vendor: 'Enbrighten',
53
+ description: 'Zigbee in-wall smart dimmer',
54
+ extend: extend.light_onoff_brightness({noConfigure: true}),
55
+ configure: async (device, coordinatorEndpoint, logger) => {
56
+ await extend.light_onoff_brightness().configure(device, coordinatorEndpoint, logger);
57
+ const endpoint = device.getEndpoint(1);
58
+ await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'genLevelCtrl']);
59
+ await reporting.onOff(endpoint);
60
+ },
61
+ },
49
62
  {
50
63
  zigbeeModel: ['43102'],
51
64
  model: '43102',
@@ -18,6 +18,7 @@ module.exports = [
18
18
  {vendor: 'Vimar', description: 'Zigbee Friends of Hue RF switch', model: '03906'},
19
19
  {vendor: 'Sunricher', model: 'SR-ZGP2801K4-FOH-E'},
20
20
  {vendor: 'LED Trading', model: '9125'},
21
+ {vendor: 'Feller', description: 'Smart light control for Philips Hue', model: '4120.2.S.FMI.61'},
21
22
  ],
22
23
  },
23
24
  {
package/devices/gewiss.js CHANGED
@@ -37,6 +37,7 @@ module.exports = [
37
37
  vendor: 'Gewiss',
38
38
  fromZigbee: [fz.cover_position_tilt, fz.ignore_basic_report],
39
39
  toZigbee: [tz.cover_state, tz.cover_position_tilt],
40
+ meta: {coverInverted: true},
40
41
  configure: async (device, coordinatorEndpoint, logger) => {
41
42
  const endpoint = device.getEndpoint(1);
42
43
  await reporting.bind(endpoint, coordinatorEndpoint, ['closuresWindowCovering']);
package/devices/ikea.js CHANGED
@@ -954,4 +954,11 @@ module.exports = [
954
954
  description: 'STOFTMOLN ceiling/wall lamp 37 warm light dimmable',
955
955
  extend: tradfriExtend.light_onoff_brightness(),
956
956
  },
957
+ {
958
+ zigbeeModel: ['STOFTMOLN ceiling/wall lamp WW24'],
959
+ model: 'T2035',
960
+ vendor: 'IKEA',
961
+ description: 'STOFTMOLN ceiling/wall lamp 24 warm light dimmable',
962
+ extend: tradfriExtend.light_onoff_brightness(),
963
+ },
957
964
  ];
package/devices/tuya.js CHANGED
@@ -1296,6 +1296,7 @@ module.exports = [
1296
1296
  {
1297
1297
  fingerprint: [{modelID: 'TS0215A', manufacturerName: '_TZ3000_4fsgukof'},
1298
1298
  {modelID: 'TS0215A', manufacturerName: '_TZ3000_wr2ucaj9'},
1299
+ {modelID: 'TS0215A', manufacturerName: '_TZ3000_zsh6uat3'},
1299
1300
  {modelID: 'TS0215A', manufacturerName: '_TZ3000_tj4pwzzm'}],
1300
1301
  model: 'TS0215A_sos',
1301
1302
  vendor: 'TuYa',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "14.0.621",
3
+ "version": "14.0.623",
4
4
  "description": "Collection of device converters to be used with zigbee-herdsman",
5
5
  "main": "index.js",
6
6
  "files": [