zigbee-herdsman-converters 14.0.483 → 14.0.486
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/adeo.js +7 -0
- package/devices/heiman.js +1 -1
- package/devices/ikea.js +1 -1
- package/devices/iris.js +16 -0
- package/devices/lidl.js +2 -2
- package/devices/moes.js +2 -0
- package/devices/tuya.js +7 -3
- package/devices/xiaomi.js +1 -0
- package/lib/constants.js +4 -4
- package/package.json +1 -1
package/devices/adeo.js
CHANGED
|
@@ -106,6 +106,13 @@ module.exports = [
|
|
|
106
106
|
description: 'ENKI Lexman E27 14W to 100W LED RGBW v2',
|
|
107
107
|
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 370]}),
|
|
108
108
|
},
|
|
109
|
+
{
|
|
110
|
+
zigbeeModel: ['ZBEK-1'],
|
|
111
|
+
model: 'IA-CDZOTAAA007MA-MAN',
|
|
112
|
+
vendor: 'ADEO',
|
|
113
|
+
description: 'ENKI LEXMAN E27 7.2 to 60W LED RGBW',
|
|
114
|
+
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 370]}),
|
|
115
|
+
},
|
|
109
116
|
{
|
|
110
117
|
zigbeeModel: ['LXEK-7'],
|
|
111
118
|
model: '9CZA-A806ST-Q1Z',
|
package/devices/heiman.js
CHANGED
|
@@ -72,7 +72,7 @@ module.exports = [
|
|
|
72
72
|
{
|
|
73
73
|
zigbeeModel: ['SMOK_V16', 'SMOK_V15', 'b5db59bfd81e4f1f95dc57fdbba17931', '98293058552c49f38ad0748541ee96ba', 'SMOK_YDLV10',
|
|
74
74
|
'FB56-SMF02HM1.4', 'SmokeSensor-N-3.0', '319fa36e7384414a9ea62cba8f6e7626', 'c3442b4ac59b4ba1a83119d938f283ab',
|
|
75
|
-
'SmokeSensor-EF-3.0'],
|
|
75
|
+
'SmokeSensor-EF-3.0', 'SMOK_HV14'],
|
|
76
76
|
model: 'HS1SA',
|
|
77
77
|
vendor: 'HEIMAN',
|
|
78
78
|
description: 'Smoke detector',
|
package/devices/ikea.js
CHANGED
|
@@ -707,7 +707,7 @@ module.exports = [
|
|
|
707
707
|
exposes: [e.cover_position(), e.battery()],
|
|
708
708
|
},
|
|
709
709
|
{
|
|
710
|
-
zigbeeModel: ['TREDANSEN
|
|
710
|
+
zigbeeModel: ['TREDANSEN block-out cellul blind'],
|
|
711
711
|
model: 'E2103',
|
|
712
712
|
vendor: 'IKEA',
|
|
713
713
|
description: 'TREDANSEN cellular blind',
|
package/devices/iris.js
CHANGED
|
@@ -161,4 +161,20 @@ module.exports = [
|
|
|
161
161
|
device.save();
|
|
162
162
|
},
|
|
163
163
|
},
|
|
164
|
+
{
|
|
165
|
+
zigbeeModel: ['3315-L'],
|
|
166
|
+
model: '3315-L',
|
|
167
|
+
vendor: 'Iris',
|
|
168
|
+
description: 'Water sensor',
|
|
169
|
+
fromZigbee: [fz.temperature, fz.ias_water_leak_alarm_1, fz.battery],
|
|
170
|
+
exposes: [e.temperature(), e.water_leak(), e.battery_low(), e.tamper(), e.battery()],
|
|
171
|
+
toZigbee: [],
|
|
172
|
+
meta: {battery: {voltageToPercentage: '3V_2500'}},
|
|
173
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
174
|
+
const endpoint = device.getEndpoint(1);
|
|
175
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['msTemperatureMeasurement', 'genPowerCfg']);
|
|
176
|
+
await reporting.temperature(endpoint);
|
|
177
|
+
await reporting.batteryVoltage(endpoint);
|
|
178
|
+
},
|
|
179
|
+
},
|
|
164
180
|
];
|
package/devices/lidl.js
CHANGED
|
@@ -736,8 +736,8 @@ module.exports = [
|
|
|
736
736
|
model: 'HG08633',
|
|
737
737
|
vendor: 'Lidl',
|
|
738
738
|
description: 'Livarno gardenspot RGB',
|
|
739
|
-
extend: extend.light_onoff_brightness_colortemp_color({
|
|
740
|
-
meta: {
|
|
739
|
+
extend: extend.light_onoff_brightness_colortemp_color({supportsHS: true, preferHS: true, colorTempRange: [153, 500]}),
|
|
740
|
+
meta: {enhancedHue: false},
|
|
741
741
|
},
|
|
742
742
|
{
|
|
743
743
|
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_chyvmhay'}],
|
package/devices/moes.js
CHANGED
|
@@ -25,6 +25,8 @@ module.exports = [
|
|
|
25
25
|
},
|
|
26
26
|
meta: {multiEndpoint: true},
|
|
27
27
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
28
|
+
await device.getEndpoint(1).read('genBasic',
|
|
29
|
+
['manufacturerName', 'zclVersion', 'appVersion', 'modelId', 'powerSource', 0xfffe]);
|
|
28
30
|
await reporting.bind(device.getEndpoint(1), coordinatorEndpoint, ['genOnOff']);
|
|
29
31
|
await reporting.bind(device.getEndpoint(2), coordinatorEndpoint, ['genOnOff']);
|
|
30
32
|
await reporting.onOff(device.getEndpoint(1));
|
package/devices/tuya.js
CHANGED
|
@@ -12,7 +12,8 @@ const utils = require('../lib/utils');
|
|
|
12
12
|
|
|
13
13
|
const TS011Fplugs = ['_TZ3000_5f43h46b', '_TZ3000_cphmq0q7', '_TZ3000_dpo1ysak', '_TZ3000_ew3ldmgx', '_TZ3000_gjnozsaz',
|
|
14
14
|
'_TZ3000_jvzvulen', '_TZ3000_mraovvmm', '_TZ3000_nfnmi125', '_TZ3000_ps3dmato', '_TZ3000_w0qqde0g', '_TZ3000_u5u4cakc',
|
|
15
|
-
'_TZ3000_rdtixbnu', '_TZ3000_typdpbpg', '_TZ3000_kx0pris5', '_TZ3000_amdymr7l', '_TZ3000_z1pnpsdo', '_TZ3000_ksw8qtmt'
|
|
15
|
+
'_TZ3000_rdtixbnu', '_TZ3000_typdpbpg', '_TZ3000_kx0pris5', '_TZ3000_amdymr7l', '_TZ3000_z1pnpsdo', '_TZ3000_ksw8qtmt',
|
|
16
|
+
'_TZ3000_nzkqcvvs'];
|
|
16
17
|
|
|
17
18
|
const tzLocal = {
|
|
18
19
|
TS0504B_color: {
|
|
@@ -353,7 +354,8 @@ module.exports = [
|
|
|
353
354
|
exposes: [e.occupancy(), e.battery_low(), e.tamper(), e.battery()],
|
|
354
355
|
},
|
|
355
356
|
{
|
|
356
|
-
fingerprint: [{modelID: 'TS0202', manufacturerName: '
|
|
357
|
+
fingerprint: [{modelID: 'TS0202', manufacturerName: '_TYZB01_dr6sduka'},
|
|
358
|
+
{modelID: 'TS0202', manufacturerName: '_TYZB01_ef5xlc9q'},
|
|
357
359
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_vwqnz1sn'},
|
|
358
360
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_2b8f6cio'},
|
|
359
361
|
{modelID: 'TS0202', manufacturerName: '_TZE200_bq5c8xfe'},
|
|
@@ -372,7 +374,9 @@ module.exports = [
|
|
|
372
374
|
model: 'TS0202',
|
|
373
375
|
vendor: 'TuYa',
|
|
374
376
|
description: 'Motion sensor',
|
|
375
|
-
whiteLabel: [{vendor: 'Mercator Ikuü', model: 'SMA02P'},
|
|
377
|
+
whiteLabel: [{vendor: 'Mercator Ikuü', model: 'SMA02P'},
|
|
378
|
+
{vendor: 'TuYa', model: 'TY-ZPR06'},
|
|
379
|
+
{vendor: 'Tesla Smart', model: 'TS0202'}],
|
|
376
380
|
fromZigbee: [fz.ias_occupancy_alarm_1, fz.battery, fz.ignore_basic_report, fz.ias_occupancy_alarm_1_report],
|
|
377
381
|
toZigbee: [],
|
|
378
382
|
exposes: [e.occupancy(), e.battery_low(), e.tamper(), e.battery(), e.battery_voltage()],
|
package/devices/xiaomi.js
CHANGED
|
@@ -1118,6 +1118,7 @@ module.exports = [
|
|
|
1118
1118
|
}
|
|
1119
1119
|
},
|
|
1120
1120
|
exposes: [e.switch(), e.power(), e.energy(), e.power_outage_memory(),
|
|
1121
|
+
e.voltage().withAccess(ea.STATE), e.current(),
|
|
1121
1122
|
e.device_temperature().withDescription('Device temperature (polled every 30 min)')],
|
|
1122
1123
|
ota: ota.zigbeeOTA,
|
|
1123
1124
|
},
|
package/lib/constants.js
CHANGED
|
@@ -97,14 +97,14 @@ const temperatureDisplayMode = {
|
|
|
97
97
|
1: 'fahrenheit',
|
|
98
98
|
};
|
|
99
99
|
|
|
100
|
-
const
|
|
100
|
+
const danfossAdaptionRunStatus= {
|
|
101
101
|
0: 'none',
|
|
102
102
|
1: 'in_progress',
|
|
103
103
|
2: 'found',
|
|
104
104
|
4: 'lost',
|
|
105
105
|
};
|
|
106
106
|
|
|
107
|
-
const
|
|
107
|
+
const danfossAdaptionRunControl = {
|
|
108
108
|
1: 'initate_adaptation',
|
|
109
109
|
2: 'cancel_adaptation',
|
|
110
110
|
};
|
|
@@ -279,8 +279,8 @@ module.exports = {
|
|
|
279
279
|
dayOfWeek,
|
|
280
280
|
fanMode,
|
|
281
281
|
temperatureDisplayMode,
|
|
282
|
-
|
|
283
|
-
|
|
282
|
+
danfossAdaptionRunControl,
|
|
283
|
+
danfossAdaptionRunStatus,
|
|
284
284
|
danfossWindowOpen,
|
|
285
285
|
danfossRoomStatusCode,
|
|
286
286
|
danfossOutputStatus,
|