zigbee-herdsman-converters 14.0.408 → 14.0.409
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/converters/toZigbee.js +0 -6
- package/devices/xiaomi.js +3 -3
- package/devices/yale.js +7 -0
- package/npm-shrinkwrap.json +1 -1
- package/package.json +1 -1
package/converters/toZigbee.js
CHANGED
|
@@ -2417,12 +2417,6 @@ const converters = {
|
|
|
2417
2417
|
await entity.read('genAnalogOutput', [0x0055]);
|
|
2418
2418
|
},
|
|
2419
2419
|
},
|
|
2420
|
-
xiaomi_curtain_acn002_status: {
|
|
2421
|
-
key: ['motor_state'],
|
|
2422
|
-
convertGet: async (entity, key, meta) => {
|
|
2423
|
-
await entity.read('genMultistateOutput', [0x0055]);
|
|
2424
|
-
},
|
|
2425
|
-
},
|
|
2426
2420
|
ledvance_commands: {
|
|
2427
2421
|
/* deprectated osram_*/
|
|
2428
2422
|
key: ['set_transition', 'remember_state', 'osram_set_transition', 'osram_remember_state'],
|
package/devices/xiaomi.js
CHANGED
|
@@ -1272,9 +1272,9 @@ module.exports = [
|
|
|
1272
1272
|
vendor: 'Xiaomi',
|
|
1273
1273
|
fromZigbee: [fz.xiaomi_curtain_acn002_position, fz.xiaomi_curtain_acn002_status, fz.cover_position_tilt, fz.ignore_basic_report,
|
|
1274
1274
|
fz.aqara_opple],
|
|
1275
|
-
toZigbee: [tz.xiaomi_curtain_position_state
|
|
1275
|
+
toZigbee: [tz.xiaomi_curtain_position_state],
|
|
1276
1276
|
exposes: [e.cover_position().setAccess('state', ea.ALL), e.battery(),
|
|
1277
|
-
exposes.enum('motor_state', ea.
|
|
1277
|
+
exposes.enum('motor_state', ea.STATE, ['declining', 'rising', 'pause', 'blocked'])
|
|
1278
1278
|
.withDescription('The current state of the motor.'),
|
|
1279
1279
|
exposes.binary('running', ea.STATE, true, false)
|
|
1280
1280
|
.withDescription('Whether the motor is moving or not.')],
|
|
@@ -1299,7 +1299,7 @@ module.exports = [
|
|
|
1299
1299
|
e.switch().withEndpoint('l1'), e.switch().withEndpoint('l2'),
|
|
1300
1300
|
exposes.binary('interlock', ea.STATE_SET, true, false)
|
|
1301
1301
|
.withDescription('Enabling prevents both relais being on at the same time')],
|
|
1302
|
-
|
|
1302
|
+
ota: ota.zigbeeOTA,
|
|
1303
1303
|
},
|
|
1304
1304
|
{
|
|
1305
1305
|
zigbeeModel: ['lumi.lock.acn02'],
|
package/devices/yale.js
CHANGED
|
@@ -124,4 +124,11 @@ module.exports = [
|
|
|
124
124
|
description: 'Real living lock / Intelligent biometric digital lock',
|
|
125
125
|
extend: lockExtend(),
|
|
126
126
|
},
|
|
127
|
+
{
|
|
128
|
+
zigbeeModel: ['06ffff2027'],
|
|
129
|
+
model: 'YMF40A RL',
|
|
130
|
+
vendor: 'Yale',
|
|
131
|
+
description: 'Real living lock / Intelligent biometric digital lock',
|
|
132
|
+
extend: lockExtend({battery: {dontDividePercentage: true}}),
|
|
133
|
+
},
|
|
127
134
|
];
|
package/npm-shrinkwrap.json
CHANGED