zigbee-herdsman-converters 20.33.0 → 20.34.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 +19 -0
- package/devices/develco.d.ts.map +1 -1
- package/devices/develco.js +11 -10
- package/devices/develco.js.map +1 -1
- package/devices/ewelink.d.ts.map +1 -1
- package/devices/ewelink.js +14 -0
- package/devices/ewelink.js.map +1 -1
- package/devices/gledopto.d.ts.map +1 -1
- package/devices/gledopto.js +7 -0
- package/devices/gledopto.js.map +1 -1
- package/devices/ikea.d.ts.map +1 -1
- package/devices/ikea.js +14 -3
- package/devices/ikea.js.map +1 -1
- package/devices/innr.d.ts.map +1 -1
- package/devices/innr.js +7 -0
- package/devices/innr.js.map +1 -1
- package/devices/nodon.d.ts.map +1 -1
- package/devices/nodon.js +158 -62
- package/devices/nodon.js.map +1 -1
- package/devices/philips.d.ts.map +1 -1
- package/devices/philips.js +7 -0
- package/devices/philips.js.map +1 -1
- package/devices/tuya.d.ts.map +1 -1
- package/devices/tuya.js +3 -4
- package/devices/tuya.js.map +1 -1
- package/lib/modernExtend.d.ts +1 -0
- package/lib/modernExtend.d.ts.map +1 -1
- package/lib/modernExtend.js +9 -1
- package/lib/modernExtend.js.map +1 -1
- package/package.json +1 -1
package/devices/tuya.js
CHANGED
|
@@ -8679,7 +8679,6 @@ const definitions = [
|
|
|
8679
8679
|
'_TZ3000_qystbcjg',
|
|
8680
8680
|
'_TZ3000_zrm3oxsh',
|
|
8681
8681
|
'_TZ3000_303avxxt',
|
|
8682
|
-
'_TZ3000_6l1pjfqe',
|
|
8683
8682
|
'_TZ3000_zjchz7pd',
|
|
8684
8683
|
]),
|
|
8685
8684
|
model: 'TS011F_with_threshold',
|
|
@@ -8698,7 +8697,7 @@ const definitions = [
|
|
|
8698
8697
|
toZigbee: [tzLocal.TS011F_threshold],
|
|
8699
8698
|
exposes: (device, options) => {
|
|
8700
8699
|
const exposes = [e.linkquality()];
|
|
8701
|
-
if (!['_TZ3000_303avxxt', '_TZ3000_zjchz7pd'
|
|
8700
|
+
if (!['_TZ3000_303avxxt', '_TZ3000_zjchz7pd'].includes(device?.manufacturerName)) {
|
|
8702
8701
|
exposes.push(e.temperature(), e
|
|
8703
8702
|
.numeric('temperature_threshold', ea.STATE_SET)
|
|
8704
8703
|
.withValueMin(40)
|
|
@@ -8753,7 +8752,7 @@ const definitions = [
|
|
|
8753
8752
|
tuya.whitelabel('EARU', 'EAKCB-T-M-Z', 'Smart circuit breaker', ['_TZ3000_lepzuhto']),
|
|
8754
8753
|
tuya.whitelabel('EARU', 'EAYCB-Z-2P', 'Smart circuit breaker with leakage protection', ['_TZ3000_zrm3oxsh']),
|
|
8755
8754
|
tuya.whitelabel('UNSH', 'SMKG-1KNL-EU-Z', 'Smart circuit Breaker', ['_TZ3000_qystbcjg']),
|
|
8756
|
-
tuya.whitelabel('Tomzn', 'TOB9Z-VAP', 'Smart circuit breaker', ['_TZ3000_303avxxt'
|
|
8755
|
+
tuya.whitelabel('Tomzn', 'TOB9Z-VAP', 'Smart circuit breaker', ['_TZ3000_303avxxt']),
|
|
8757
8756
|
tuya.whitelabel('Immax', '07573L', 'Smart circuit breaker', ['_TZ3000_zjchz7pd']),
|
|
8758
8757
|
],
|
|
8759
8758
|
},
|
|
@@ -9732,7 +9731,7 @@ const definitions = [
|
|
|
9732
9731
|
e.numeric('upper', ea.STATE_SET).withValueMin(0).withValueMax(50).withValueStep(1).withUnit('%').withDescription('Up movement limit'),
|
|
9733
9732
|
e.numeric('delay', ea.STATE_SET).withValueMin(0).withValueMax(10).withValueStep(1).withUnit('s').withDescription('Sustain time'),
|
|
9734
9733
|
e.binary('reverse', ea.STATE_SET, 'ON', 'OFF').withDescription('Reverse'),
|
|
9735
|
-
e.binary('touch', ea.STATE_SET, 'ON', 'OFF').withDescription('Touch
|
|
9734
|
+
e.binary('touch', ea.STATE_SET, 'ON', 'OFF').withDescription('Touch control'),
|
|
9736
9735
|
],
|
|
9737
9736
|
configure: async (device, coordinatorEndpoint) => {
|
|
9738
9737
|
await tuya.configureMagicPacket(device, coordinatorEndpoint);
|