zigbee-herdsman-converters 20.27.2 → 20.29.0
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/CHANGELOG.md +34 -0
- package/converters/fromZigbee.d.ts.map +1 -1
- package/converters/fromZigbee.js +17 -12
- package/converters/fromZigbee.js.map +1 -1
- package/converters/toZigbee.d.ts +1 -1
- package/converters/toZigbee.d.ts.map +1 -1
- package/converters/toZigbee.js +20 -4
- package/converters/toZigbee.js.map +1 -1
- package/devices/adeo.d.ts.map +1 -1
- package/devices/adeo.js +2 -0
- package/devices/adeo.js.map +1 -1
- package/devices/candeo.d.ts.map +1 -1
- package/devices/candeo.js +118 -13
- package/devices/candeo.js.map +1 -1
- package/devices/frient.d.ts.map +1 -1
- package/devices/frient.js +13 -40
- package/devices/frient.js.map +1 -1
- package/devices/lixee.js +1 -1
- package/devices/lixee.js.map +1 -1
- package/devices/moes.d.ts.map +1 -1
- package/devices/moes.js +2 -1
- package/devices/moes.js.map +1 -1
- package/devices/third_reality.d.ts.map +1 -1
- package/devices/third_reality.js +4 -7
- package/devices/third_reality.js.map +1 -1
- package/devices/tuya.d.ts.map +1 -1
- package/devices/tuya.js +18 -7
- package/devices/tuya.js.map +1 -1
- package/lib/develco.d.ts +2 -0
- package/lib/develco.d.ts.map +1 -1
- package/lib/develco.js +20 -0
- package/lib/develco.js.map +1 -1
- package/lib/ota/index.d.ts +1 -2
- package/lib/ota/index.d.ts.map +1 -1
- package/lib/ota/index.js +1 -3
- package/lib/ota/index.js.map +1 -1
- package/lib/tuya.d.ts.map +1 -1
- package/lib/tuya.js +1 -0
- package/lib/tuya.js.map +1 -1
- package/package.json +1 -1
- package/lib/ota/lixee.d.ts +0 -11
- package/lib/ota/lixee.d.ts.map +0 -1
- package/lib/ota/lixee.js +0 -76
- package/lib/ota/lixee.js.map +0 -1
package/devices/tuya.js
CHANGED
|
@@ -2533,10 +2533,14 @@ const definitions = [
|
|
|
2533
2533
|
const exps = [
|
|
2534
2534
|
e.cover_position(),
|
|
2535
2535
|
e.enum('moving', ea.STATE, ['UP', 'STOP', 'DOWN']),
|
|
2536
|
-
e.binary('calibration', ea.ALL, 'ON', 'OFF'),
|
|
2537
2536
|
e.binary('motor_reversal', ea.ALL, 'ON', 'OFF'),
|
|
2538
|
-
e.numeric('calibration_time', ea.STATE).withUnit('s').withDescription('Calibration time'),
|
|
2539
2537
|
];
|
|
2538
|
+
if (device?.manufacturerName !== '_TZ3000_cet6ch1r') {
|
|
2539
|
+
exps.push(e.binary('calibration', ea.ALL, 'ON', 'OFF'), e.numeric('calibration_time', ea.STATE).withUnit('s').withDescription('Calibration time'));
|
|
2540
|
+
}
|
|
2541
|
+
else {
|
|
2542
|
+
exps.push(e.binary('calibration_up', ea.ALL, 'ON', 'OFF'), e.numeric('calibration_time_up', ea.STATE).withUnit('s').withDescription('Calibration time up'), e.binary('calibration_down', ea.ALL, 'ON', 'OFF'), e.numeric('calibration_time_down', ea.STATE).withUnit('s').withDescription('Calibration time down'));
|
|
2543
|
+
}
|
|
2540
2544
|
if (device?.manufacturerName !== '_TZ3210_xbpt8ewc') {
|
|
2541
2545
|
exps.push(tuya.exposes.indicatorMode(), tuya.exposes.backlightModeOffOn());
|
|
2542
2546
|
}
|
|
@@ -2884,6 +2888,7 @@ const definitions = [
|
|
|
2884
2888
|
{ modelID: 'TS0215A', manufacturerName: '_TZ3000_fsiepnrh' },
|
|
2885
2889
|
{ modelID: 'TS0215A', manufacturerName: '_TZ3000_ug1vtuzn' },
|
|
2886
2890
|
{ modelID: 'TS0215A', manufacturerName: '_TZ3000_eo3dttwe' },
|
|
2891
|
+
{ modelID: 'TS0215A', manufacturerName: '_TZ3000_jwcixnrz' },
|
|
2887
2892
|
],
|
|
2888
2893
|
model: 'TS0215A_remote',
|
|
2889
2894
|
vendor: 'Tuya',
|
|
@@ -3896,6 +3901,7 @@ const definitions = [
|
|
|
3896
3901
|
{ modelID: 'TS0601', manufacturerName: '_TZE200_3i3exuay' },
|
|
3897
3902
|
{ modelID: 'TS0601', manufacturerName: '_TZE200_tvrvdj6o' },
|
|
3898
3903
|
{ modelID: 'zo2pocs\u0000', manufacturerName: '_TYST11_fzo2pocs' },
|
|
3904
|
+
{ modelID: 'dank5zs\u0000', manufacturerName: '_TYST11_udank5zs' },
|
|
3899
3905
|
{ modelID: 'TS0601', manufacturerName: '_TZE200_b2u1drdv' },
|
|
3900
3906
|
{ modelID: 'TS0601', manufacturerName: '_TZE200_ol5jlkkr' },
|
|
3901
3907
|
{ modelID: 'TS0601', manufacturerName: '_TZE204_guvc7pdy' },
|
|
@@ -3928,6 +3934,7 @@ const definitions = [
|
|
|
3928
3934
|
{ modelID: 'TS0601', manufacturerName: '_TZE204_xu4a5rhj' },
|
|
3929
3935
|
{ modelID: 'TS0601', manufacturerName: '_TZE200_2odrmqwq' },
|
|
3930
3936
|
{ modelID: 'TS0601', manufacturerName: '_TZE204_lh3arisb' },
|
|
3937
|
+
{ modelID: 'TS0601', manufacturerName: '_TZE284_udank5zs' },
|
|
3931
3938
|
],
|
|
3932
3939
|
model: 'TS0601_cover_1',
|
|
3933
3940
|
vendor: 'Tuya',
|
|
@@ -4401,7 +4408,7 @@ const definitions = [
|
|
|
4401
4408
|
'_TZE200_lllliz3p' /* model: 'TV02-Zigbee', vendor: 'Tuya' */,
|
|
4402
4409
|
'_TZE200_mudxchsu' /* model: 'TV05-ZG curve', vendor: 'Tuya' */,
|
|
4403
4410
|
'_TZE200_7yoranx2' /* model: 'TV01-ZB', vendor: 'Moes' */,
|
|
4404
|
-
'_TZE200_kds0pmmv'
|
|
4411
|
+
'_TZE200_kds0pmmv',
|
|
4405
4412
|
'_TZE200_py4cm3he' /* model: 'TV06-Zigbee', vendor: 'Tuya' */,
|
|
4406
4413
|
]),
|
|
4407
4414
|
model: 'TV02-Zigbee',
|
|
@@ -4414,7 +4421,7 @@ const definitions = [
|
|
|
4414
4421
|
{ vendor: 'Tesla Smart', model: 'TSL-TRV-TV05ZG' },
|
|
4415
4422
|
{ vendor: 'Unknown/id3.pl', model: 'GTZ08' },
|
|
4416
4423
|
tuya.whitelabel('Moes', 'ZTRV-ZX-TV01-MS', 'Thermostat radiator valve', ['_TZE200_7yoranx2']),
|
|
4417
|
-
tuya.whitelabel('Moes', 'TV01-ZB', 'Thermostat radiator valve', ['_TZE200_e9ba97vf'
|
|
4424
|
+
tuya.whitelabel('Moes', 'TV01-ZB', 'Thermostat radiator valve', ['_TZE200_e9ba97vf']),
|
|
4418
4425
|
],
|
|
4419
4426
|
ota: ota.zigbeeOTA,
|
|
4420
4427
|
fromZigbee: [tuya.fz.datapoints],
|
|
@@ -6726,7 +6733,10 @@ const definitions = [
|
|
|
6726
6733
|
fromZigbee_1.default.tuya_relay_din_led_indicator,
|
|
6727
6734
|
],
|
|
6728
6735
|
toZigbee: [toZigbee_1.default.on_off, tuya.tz.power_on_behavior_1, toZigbee_1.default.tuya_relay_din_led_indicator],
|
|
6729
|
-
whiteLabel: [
|
|
6736
|
+
whiteLabel: [
|
|
6737
|
+
tuya.whitelabel('Tongou', 'TO-Q-SY1-JZT', 'Din smart relay (with power monitoring via polling)', ['_TZ3000_qeuvnohg']),
|
|
6738
|
+
tuya.whitelabel('TOMZN', 'TOB9Z-63M', 'Din smart relay (with power monitoring via polling)', ['_TZ3000_6l1pjfqe']),
|
|
6739
|
+
],
|
|
6730
6740
|
ota: ota.zigbeeOTA,
|
|
6731
6741
|
configure: async (device, coordinatorEndpoint) => {
|
|
6732
6742
|
const endpoint = device.getEndpoint(1);
|
|
@@ -8500,6 +8510,7 @@ const definitions = [
|
|
|
8500
8510
|
'_TZ3000_qystbcjg',
|
|
8501
8511
|
'_TZ3000_zrm3oxsh',
|
|
8502
8512
|
'_TZ3000_303avxxt',
|
|
8513
|
+
'_TZ3000_6l1pjfqe',
|
|
8503
8514
|
'_TZ3000_zjchz7pd',
|
|
8504
8515
|
]),
|
|
8505
8516
|
model: 'TS011F_with_threshold',
|
|
@@ -8518,7 +8529,7 @@ const definitions = [
|
|
|
8518
8529
|
toZigbee: [tzLocal.TS011F_threshold],
|
|
8519
8530
|
exposes: (device, options) => {
|
|
8520
8531
|
const exposes = [e.linkquality()];
|
|
8521
|
-
if (
|
|
8532
|
+
if (!['_TZ3000_303avxxt', '_TZ3000_zjchz7pd', '_TZ3000_6l1pjfqe'].includes(device?.manufacturerName)) {
|
|
8522
8533
|
exposes.push(e.temperature(), e
|
|
8523
8534
|
.numeric('temperature_threshold', ea.STATE_SET)
|
|
8524
8535
|
.withValueMin(40)
|
|
@@ -8573,7 +8584,7 @@ const definitions = [
|
|
|
8573
8584
|
tuya.whitelabel('EARU', 'EAKCB-T-M-Z', 'Smart circuit breaker', ['_TZ3000_lepzuhto']),
|
|
8574
8585
|
tuya.whitelabel('EARU', 'EAYCB-Z-2P', 'Smart circuit breaker with leakage protection', ['_TZ3000_zrm3oxsh']),
|
|
8575
8586
|
tuya.whitelabel('UNSH', 'SMKG-1KNL-EU-Z', 'Smart circuit Breaker', ['_TZ3000_qystbcjg']),
|
|
8576
|
-
tuya.whitelabel('Tomzn', 'TOB9Z-
|
|
8587
|
+
tuya.whitelabel('Tomzn', 'TOB9Z-VAP', 'Smart circuit breaker', ['_TZ3000_303avxxt', '_TZ3000_6l1pjfqe']),
|
|
8577
8588
|
tuya.whitelabel('Immax', '07573L', 'Smart circuit breaker', ['_TZ3000_zjchz7pd']),
|
|
8578
8589
|
],
|
|
8579
8590
|
},
|