zigbee-herdsman-converters 14.0.483 → 14.0.484
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/ikea.js +1 -1
- package/devices/iris.js +16 -0
- package/devices/tuya.js +5 -2
- package/devices/xiaomi.js +1 -0
- 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/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/tuya.js
CHANGED
|
@@ -353,7 +353,8 @@ module.exports = [
|
|
|
353
353
|
exposes: [e.occupancy(), e.battery_low(), e.tamper(), e.battery()],
|
|
354
354
|
},
|
|
355
355
|
{
|
|
356
|
-
fingerprint: [{modelID: 'TS0202', manufacturerName: '
|
|
356
|
+
fingerprint: [{modelID: 'TS0202', manufacturerName: '_TYZB01_dr6sduka'},
|
|
357
|
+
{modelID: 'TS0202', manufacturerName: '_TYZB01_ef5xlc9q'},
|
|
357
358
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_vwqnz1sn'},
|
|
358
359
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_2b8f6cio'},
|
|
359
360
|
{modelID: 'TS0202', manufacturerName: '_TZE200_bq5c8xfe'},
|
|
@@ -372,7 +373,9 @@ module.exports = [
|
|
|
372
373
|
model: 'TS0202',
|
|
373
374
|
vendor: 'TuYa',
|
|
374
375
|
description: 'Motion sensor',
|
|
375
|
-
whiteLabel: [{vendor: 'Mercator Ikuü', model: 'SMA02P'},
|
|
376
|
+
whiteLabel: [{vendor: 'Mercator Ikuü', model: 'SMA02P'},
|
|
377
|
+
{vendor: 'TuYa', model: 'TY-ZPR06'},
|
|
378
|
+
{vendor: 'Tesla Smart', model: 'TS0202'}],
|
|
376
379
|
fromZigbee: [fz.ias_occupancy_alarm_1, fz.battery, fz.ignore_basic_report, fz.ias_occupancy_alarm_1_report],
|
|
377
380
|
toZigbee: [],
|
|
378
381
|
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
|
},
|