zigbee-herdsman-converters 14.0.470 → 14.0.471
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/fromZigbee.js +2 -2
- package/devices/philips.js +17 -0
- package/package.json +2 -2
package/converters/fromZigbee.js
CHANGED
|
@@ -3820,7 +3820,7 @@ const converters = {
|
|
|
3820
3820
|
return {deadzone_temperature: value};
|
|
3821
3821
|
case tuya.dataPoints.moesLocalTemp:
|
|
3822
3822
|
temperature = value & 1<<15 ? value - (1<<16) + 1 : value;
|
|
3823
|
-
if (meta.device.manufacturerName
|
|
3823
|
+
if (meta.device.manufacturerName !== '_TZE200_ye5jkfsb') {
|
|
3824
3824
|
// https://github.com/Koenkk/zigbee2mqtt/issues/11980
|
|
3825
3825
|
temperature = temperature / 10;
|
|
3826
3826
|
}
|
|
@@ -4220,7 +4220,7 @@ const converters = {
|
|
|
4220
4220
|
}
|
|
4221
4221
|
case tuya.dataPoints.tuyaSabVOC:
|
|
4222
4222
|
return {voc: calibrateAndPrecisionRoundOptions(value, options, 'voc')};
|
|
4223
|
-
case tuya.dataPoints.
|
|
4223
|
+
case tuya.dataPoints.tuyaSahkFormaldehyd:
|
|
4224
4224
|
return {formaldehyd: calibrateAndPrecisionRoundOptions(value, options, 'formaldehyd')};
|
|
4225
4225
|
default:
|
|
4226
4226
|
meta.logger.warn(`zigbee-herdsman-converters:TuyaSmartAirBox: Unrecognized DP #${
|
package/devices/philips.js
CHANGED
|
@@ -2786,6 +2786,15 @@ module.exports = [
|
|
|
2786
2786
|
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [222, 454]}),
|
|
2787
2787
|
ota: ota.zigbeeOTA,
|
|
2788
2788
|
},
|
|
2789
|
+
{
|
|
2790
|
+
zigbeeModel: ['LWE006'],
|
|
2791
|
+
model: '929002294102',
|
|
2792
|
+
vendor: 'Philips',
|
|
2793
|
+
description: 'Hue white candle bulb E14 bluetooth',
|
|
2794
|
+
meta: {turnsOffAtBrightness1: true},
|
|
2795
|
+
extend: hueExtend.light_onoff_brightness(),
|
|
2796
|
+
ota: ota.zigbeeOTA,
|
|
2797
|
+
},
|
|
2789
2798
|
{
|
|
2790
2799
|
zigbeeModel: ['LWE007'],
|
|
2791
2800
|
model: '9290030211',
|
|
@@ -2821,6 +2830,14 @@ module.exports = [
|
|
|
2821
2830
|
extend: hueExtend.light_onoff_brightness(),
|
|
2822
2831
|
ota: ota.zigbeeOTA,
|
|
2823
2832
|
},
|
|
2833
|
+
{
|
|
2834
|
+
zigbeeModel: ['915005998201'],
|
|
2835
|
+
model: '915005998201',
|
|
2836
|
+
vendor: 'Philips',
|
|
2837
|
+
description: 'Hue Bluetooth white & color ambiance ceiling lamp Infuse',
|
|
2838
|
+
extend: hueExtend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
|
|
2839
|
+
ota: ota.zigbeeOTA,
|
|
2840
|
+
},
|
|
2824
2841
|
{
|
|
2825
2842
|
zigbeeModel: ['915005997301', '915005997201'],
|
|
2826
2843
|
model: '915005997301',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zigbee-herdsman-converters",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.471",
|
|
4
4
|
"description": "Collection of device converters to be used with zigbee-herdsman",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"buffer-crc32": "^0.2.13",
|
|
39
39
|
"https-proxy-agent": "^5.0.0",
|
|
40
40
|
"tar-stream": "^2.2.0",
|
|
41
|
-
"zigbee-herdsman": "^0.14.
|
|
41
|
+
"zigbee-herdsman": "^0.14.22"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"eslint": "*",
|