zigbee-herdsman-converters 14.0.434 → 14.0.435
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 +1 -1
- package/devices/danfoss.js +2 -1
- package/devices/philips.js +9 -0
- package/devices/seastar_intelligence.js +11 -0
- package/devices/tuya.js +1 -0
- package/npm-shrinkwrap.json +1 -1
- package/package.json +1 -1
package/converters/toZigbee.js
CHANGED
|
@@ -3430,7 +3430,7 @@ const converters = {
|
|
|
3430
3430
|
// upscale to 1000
|
|
3431
3431
|
let newValue;
|
|
3432
3432
|
let dp = tuya.dataPoints.dimmerLevel;
|
|
3433
|
-
if (
|
|
3433
|
+
if (['_TZE200_3p5ydos3', '_TZE200_9i9dt8is', '_TZE200_dfxkcots'].includes(meta.device.manufacturerName)) {
|
|
3434
3434
|
dp = tuya.dataPoints.eardaDimmerLevel;
|
|
3435
3435
|
}
|
|
3436
3436
|
if (key === 'brightness_min') {
|
package/devices/danfoss.js
CHANGED
|
@@ -11,10 +11,11 @@ module.exports = [
|
|
|
11
11
|
{
|
|
12
12
|
// eTRV0100 is the same as Hive TRV001 and Popp eT093WRO. If implementing anything, please consider
|
|
13
13
|
// changing those two too.
|
|
14
|
-
zigbeeModel: ['eTRV0100'],
|
|
14
|
+
zigbeeModel: ['eTRV0100', 'eTRV0101'],
|
|
15
15
|
model: '014G2461',
|
|
16
16
|
vendor: 'Danfoss',
|
|
17
17
|
description: 'Ally thermostat',
|
|
18
|
+
whiteLabel: [{vendor: 'Danfoss', model: '014G2463'}],
|
|
18
19
|
fromZigbee: [fz.battery, fz.thermostat, fz.thermostat_weekly_schedule, fz.hvac_user_interface, fz.danfoss_thermostat],
|
|
19
20
|
toZigbee: [tz.danfoss_thermostat_occupied_heating_setpoint, tz.thermostat_local_temperature, tz.danfoss_mounted_mode_active,
|
|
20
21
|
tz.danfoss_mounted_mode_control, tz.danfoss_thermostat_vertical_orientation, tz.danfoss_algorithm_scale_factor,
|
package/devices/philips.js
CHANGED
|
@@ -795,6 +795,15 @@ module.exports = [
|
|
|
795
795
|
extend: hueExtend.light_onoff_brightness(),
|
|
796
796
|
ota: ota.zigbeeOTA,
|
|
797
797
|
},
|
|
798
|
+
{
|
|
799
|
+
zigbeeModel: ['LWG003'],
|
|
800
|
+
model: '9290019536',
|
|
801
|
+
vendor: 'Philips',
|
|
802
|
+
description: 'Hue white GU10',
|
|
803
|
+
meta: {turnsOffAtBrightness1: true},
|
|
804
|
+
extend: hueExtend.light_onoff_brightness(),
|
|
805
|
+
ota: ota.zigbeeOTA,
|
|
806
|
+
},
|
|
798
807
|
{
|
|
799
808
|
zigbeeModel: ['LWG004'],
|
|
800
809
|
model: 'LWG004',
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
const extend = require('../lib/extend');
|
|
2
|
+
|
|
3
|
+
module.exports = [
|
|
4
|
+
{
|
|
5
|
+
zigbeeModel: ['020B0B'],
|
|
6
|
+
model: '020B0B',
|
|
7
|
+
vendor: 'Fischer & Honsel',
|
|
8
|
+
description: 'LED Tischleuchte Beta Zig',
|
|
9
|
+
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 370]}),
|
|
10
|
+
},
|
|
11
|
+
];
|
package/devices/tuya.js
CHANGED
|
@@ -312,6 +312,7 @@ module.exports = [
|
|
|
312
312
|
{modelID: 'TS0202', manufacturerName: '_TZ3000_bsvqrxru'},
|
|
313
313
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_tv3wxhcz'},
|
|
314
314
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_hqbdru35'},
|
|
315
|
+
{modelID: 'TS0202', manufacturerName: '_TZ3000_otvn3lne'},
|
|
315
316
|
{modelID: 'TS0202', manufacturerName: '_TZ3000_tiwq83wk'},
|
|
316
317
|
{modelID: 'TS0202', manufacturerName: '_TZ3000_ykwcwxmz'},
|
|
317
318
|
{modelID: 'WHD02', manufacturerName: '_TZ3000_hktqahrq'}],
|
package/npm-shrinkwrap.json
CHANGED