zigbee-herdsman-converters 25.116.0 → 25.117.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 +16 -0
- package/dist/devices/bosch.js +2 -2
- package/dist/devices/bosch.js.map +1 -1
- package/dist/devices/moes.js +1 -1
- package/dist/devices/moes.js.map +1 -1
- package/dist/devices/ozsmartthings.js +1 -1
- package/dist/devices/ozsmartthings.js.map +1 -1
- package/dist/devices/shelly.d.ts.map +1 -1
- package/dist/devices/shelly.js +7 -0
- package/dist/devices/shelly.js.map +1 -1
- package/dist/devices/tuya.d.ts.map +1 -1
- package/dist/devices/tuya.js +12 -0
- package/dist/devices/tuya.js.map +1 -1
- package/dist/models-index.json +1 -1
- package/package.json +1 -1
package/dist/devices/tuya.js
CHANGED
|
@@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
36
36
|
exports.definitions = void 0;
|
|
37
37
|
const node_util_1 = require("node:util");
|
|
38
38
|
const zigbee_herdsman_1 = require("zigbee-herdsman");
|
|
39
|
+
const zcl_1 = require("zigbee-herdsman/dist/zspec/zcl");
|
|
39
40
|
const fz = __importStar(require("../converters/fromZigbee"));
|
|
40
41
|
const tz = __importStar(require("../converters/toZigbee"));
|
|
41
42
|
const libColor = __importStar(require("../lib/color"));
|
|
@@ -4179,6 +4180,16 @@ exports.definitions = [
|
|
|
4179
4180
|
tuya.tz.switch_type_curtain,
|
|
4180
4181
|
],
|
|
4181
4182
|
meta: { coverInverted: true },
|
|
4183
|
+
extend: [
|
|
4184
|
+
m.deviceAddCustomCluster("closuresWindowCovering", {
|
|
4185
|
+
ID: 0x0102,
|
|
4186
|
+
attributes: {
|
|
4187
|
+
currentPositionLiftPercentage: { ID: 0x0008, type: zcl_1.DataType.UINT8, report: true, scene: true, max: 100, default: 0, write: true },
|
|
4188
|
+
},
|
|
4189
|
+
commands: {},
|
|
4190
|
+
commandsResponse: {},
|
|
4191
|
+
}),
|
|
4192
|
+
],
|
|
4182
4193
|
whiteLabel: [
|
|
4183
4194
|
tuya.whitelabel("BSEED", "EC-GL86ZPCRS31", "Curtain/blind switch", ["_TZ3000_bs93npae"]),
|
|
4184
4195
|
tuya.whitelabel("Danor", "SK-Z802C-US", "Smart curtain/shutter switch", ["_TZ3000_8h7wgocw"]),
|
|
@@ -5072,6 +5083,7 @@ exports.definitions = [
|
|
|
5072
5083
|
tuya.whitelabel("HOBEIAN", "ZG-101ZS", "Star Ring 4 Gang Scene Switch", ["_TZ3000_bgtzm4ny"]),
|
|
5073
5084
|
tuya.whitelabel("Moes", "XH-SY-04Z", "4 button portable remote control", ["_TZ3000_kfu8zapd"]),
|
|
5074
5085
|
tuya.whitelabel("LoraTap", "SS6400ZB", "4 button portable remote control", ["_TZ3000_ee8nrt2l"]),
|
|
5086
|
+
tuya.whitelabel("Zemismart", "ZMR4_1", "4 button portable remote control (without dimmer)", ["_TZ3000_xwuveizv"]),
|
|
5075
5087
|
],
|
|
5076
5088
|
fromZigbee: [tuya.fz.on_off_action, fz.battery],
|
|
5077
5089
|
exposes: [
|