zigbee-herdsman-converters 15.0.77 → 15.0.78
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/schneider_electric.js +1 -0
- package/devices/tuya.js +5 -5
- package/package.json +2 -2
|
@@ -843,6 +843,7 @@ module.exports = [
|
|
|
843
843
|
toZigbee: [tz.on_off, tz.power_on_behavior],
|
|
844
844
|
exposes: [e.switch(), e.power(), e.energy(), exposes.enum('power_on_behavior', ea.ALL, ['off', 'previous', 'on'])
|
|
845
845
|
.withDescription('Controls the behaviour when the device is powered on'), e.current(), e.voltage()],
|
|
846
|
+
whiteLabel: [{vendor: 'Elko', model: 'EKO09738', description: 'SmartStikk'}],
|
|
846
847
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
847
848
|
const endpoint = device.getEndpoint(6);
|
|
848
849
|
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'haElectricalMeasurement', 'seMetering']);
|
package/devices/tuya.js
CHANGED
|
@@ -1067,7 +1067,8 @@ module.exports = [
|
|
|
1067
1067
|
fingerprint: [{modelID: 'TS0202', manufacturerName: '_TYZB01_jytabjkb'},
|
|
1068
1068
|
{modelID: 'TS0202', manufacturerName: '_TZ3000_lltemgsf'},
|
|
1069
1069
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_5nr7ncpl'},
|
|
1070
|
-
{modelID: 'TS0202', manufacturerName: '_TZ3000_mg4dy6z6'}
|
|
1070
|
+
{modelID: 'TS0202', manufacturerName: '_TZ3000_mg4dy6z6'},
|
|
1071
|
+
{modelID: 'TS0202', manufacturerName: '_TZ3040_bb6xaihh'}],
|
|
1071
1072
|
model: 'TS0202_1',
|
|
1072
1073
|
vendor: 'TuYa',
|
|
1073
1074
|
description: 'Motion sensor',
|
|
@@ -1999,8 +2000,7 @@ module.exports = [
|
|
|
1999
2000
|
},
|
|
2000
2001
|
},
|
|
2001
2002
|
{
|
|
2002
|
-
fingerprint:
|
|
2003
|
-
{modelID: 'TS0002', manufacturerName: '_TZ3000_7ed9cqgi'}, {modelID: 'TS0002', manufacturerName: '_TZ3000_zmy4lslw'}],
|
|
2003
|
+
fingerprint: tuya.fingerprint('TS0002', ['_TZ3000_01gpyda5', '_TZ3000_bvrlqyj7', '_TZ3000_7ed9cqgi', '_TZ3000_zmy4lslw']),
|
|
2004
2004
|
model: 'TS0002_switch_module',
|
|
2005
2005
|
vendor: 'TuYa',
|
|
2006
2006
|
description: '2 gang switch module',
|
|
@@ -2017,7 +2017,7 @@ module.exports = [
|
|
|
2017
2017
|
},
|
|
2018
2018
|
},
|
|
2019
2019
|
{
|
|
2020
|
-
fingerprint:
|
|
2020
|
+
fingerprint: tuya.fingerprint('TS0002', ['_TZ3000_fisb3ajo', '_TZ3000_5gey1ohx']),
|
|
2021
2021
|
model: 'TS0002_switch_module_2',
|
|
2022
2022
|
vendor: 'TuYa',
|
|
2023
2023
|
description: '2 gang switch module',
|
|
@@ -2666,7 +2666,7 @@ module.exports = [
|
|
|
2666
2666
|
),
|
|
2667
2667
|
},
|
|
2668
2668
|
{
|
|
2669
|
-
fingerprint: tuya.fingerprint('TS0601', ['_TZE200_ntcy3xu1']),
|
|
2669
|
+
fingerprint: tuya.fingerprint('TS0601', ['_TZE200_ntcy3xu1', '_TZE200_ytibqbra']),
|
|
2670
2670
|
model: 'TS0601_smoke_1',
|
|
2671
2671
|
vendor: 'TuYa',
|
|
2672
2672
|
description: 'Smoke sensor',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zigbee-herdsman-converters",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.78",
|
|
4
4
|
"description": "Collection of device converters to be used with zigbee-herdsman",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"buffer-crc32": "^0.2.13",
|
|
39
39
|
"https-proxy-agent": "^5.0.1",
|
|
40
40
|
"tar-stream": "^3.0.0",
|
|
41
|
-
"zigbee-herdsman": "^0.14.
|
|
41
|
+
"zigbee-herdsman": "^0.14.103"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"eslint": "*",
|