zigbee-herdsman-converters 14.0.527 → 14.0.528
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/letsled.js +11 -0
- package/devices/tuya.js +1 -1
- package/devices/xiaomi.js +3 -3
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
const extend = require('../lib/extend');
|
|
2
|
+
|
|
3
|
+
module.exports = [
|
|
4
|
+
{
|
|
5
|
+
fingerprint: [{modelID: 'RGBW Down Light', manufacturerName: 'Letsleds China'}],
|
|
6
|
+
model: 'HLC929-Z-RGBW-4C-IA-OTA-3.0',
|
|
7
|
+
vendor: 'Letsleds',
|
|
8
|
+
description: 'RGBW down light (color temp is inverted)',
|
|
9
|
+
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 370]}),
|
|
10
|
+
},
|
|
11
|
+
];
|
package/devices/tuya.js
CHANGED
|
@@ -1435,7 +1435,7 @@ module.exports = [
|
|
|
1435
1435
|
description: 'Smart plug (with power monitoring by polling)',
|
|
1436
1436
|
vendor: 'TuYa',
|
|
1437
1437
|
whiteLabel: [{vendor: 'VIKEFON', model: 'TS011F'}, {vendor: 'BlitzWolf', model: 'BW-SHP15'},
|
|
1438
|
-
{vendor: 'Avatto', model: 'MIUCOT10Z'}],
|
|
1438
|
+
{vendor: 'Avatto', model: 'MIUCOT10Z'}, {vendor: 'Neo', model: 'NAS-WR01B'}],
|
|
1439
1439
|
ota: ota.zigbeeOTA,
|
|
1440
1440
|
fromZigbee: [fz.on_off, fz.electrical_measurement, fz.metering, fz.ignore_basic_report, fz.tuya_switch_power_outage_memory,
|
|
1441
1441
|
fz.ts011f_plug_indicator_mode, fz.ts011f_plug_child_mode],
|
package/devices/xiaomi.js
CHANGED
|
@@ -88,7 +88,7 @@ module.exports = [
|
|
|
88
88
|
.withDescription('Switch between rgbw mode or dual color temperature mode')],
|
|
89
89
|
},
|
|
90
90
|
{
|
|
91
|
-
zigbeeModel: ['lumi.light.aqcn02'
|
|
91
|
+
zigbeeModel: ['lumi.light.aqcn02'],
|
|
92
92
|
model: 'ZNLDP12LM',
|
|
93
93
|
vendor: 'Xiaomi',
|
|
94
94
|
description: 'Aqara smart LED bulb',
|
|
@@ -109,7 +109,7 @@ module.exports = [
|
|
|
109
109
|
ota: ota.zigbeeOTA,
|
|
110
110
|
},
|
|
111
111
|
{
|
|
112
|
-
zigbeeModel: ['lumi.light.cwac02'],
|
|
112
|
+
zigbeeModel: ['lumi.light.cwac02', 'lumi.light.acn014'],
|
|
113
113
|
model: 'ZNLDP13LM',
|
|
114
114
|
vendor: 'Xiaomi',
|
|
115
115
|
description: 'Aqara T1 smart LED bulb',
|
|
@@ -1188,7 +1188,7 @@ module.exports = [
|
|
|
1188
1188
|
exposes: [
|
|
1189
1189
|
e.smoke(), e.battery_low(), e.tamper(), e.battery(), exposes.enum('sensitivity', ea.STATE_SET, ['low', 'medium', 'high']),
|
|
1190
1190
|
exposes.numeric('smoke_density', ea.STATE), exposes.enum('selftest', ea.SET, ['']), e.battery_voltage(),
|
|
1191
|
-
exposes.binary('test', ea.STATE, true, false).withDescription('Test mode activated'),
|
|
1191
|
+
exposes.binary('test', ea.STATE, true, false).withDescription('Test mode activated'), e.device_temperature(),
|
|
1192
1192
|
],
|
|
1193
1193
|
},
|
|
1194
1194
|
{
|