zigbee-herdsman-converters 14.0.621 → 14.0.622
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/enbrighten.js +13 -0
- package/devices/gewiss.js +1 -0
- package/devices/tuya.js +1 -0
- package/package.json +1 -1
package/devices/enbrighten.js
CHANGED
|
@@ -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',
|
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/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',
|