zigbee-herdsman-converters 14.0.476 → 14.0.477
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/innr.js +8 -0
- package/devices/tuya.js +4 -1
- package/package.json +1 -1
package/devices/innr.js
CHANGED
|
@@ -47,6 +47,14 @@ module.exports = [
|
|
|
47
47
|
extend: extend.light_onoff_brightness(),
|
|
48
48
|
meta: {turnsOffAtBrightness1: true},
|
|
49
49
|
},
|
|
50
|
+
{
|
|
51
|
+
zigbeeModel: ['OGL 130 C'],
|
|
52
|
+
model: 'OGL 130 C',
|
|
53
|
+
vendor: 'Innr',
|
|
54
|
+
description: 'Outdoor smart globe lights',
|
|
55
|
+
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [100, 1000], supportsHS: true}),
|
|
56
|
+
meta: {applyRedFix: true, turnsOffAtBrightness1: true},
|
|
57
|
+
},
|
|
50
58
|
{
|
|
51
59
|
zigbeeModel: ['OPL 130 C'],
|
|
52
60
|
model: 'OPL 130 C',
|
package/devices/tuya.js
CHANGED
|
@@ -729,7 +729,10 @@ module.exports = [
|
|
|
729
729
|
},
|
|
730
730
|
},
|
|
731
731
|
{
|
|
732
|
-
fingerprint: [
|
|
732
|
+
fingerprint: [
|
|
733
|
+
{modelID: 'TS0201', manufacturerName: '_TZ3000_bguser20'},
|
|
734
|
+
{modelID: 'TS0201', manufacturerName: '_TZ3000_fllyghyj'},
|
|
735
|
+
],
|
|
733
736
|
model: 'WSD500A',
|
|
734
737
|
vendor: 'TuYa',
|
|
735
738
|
description: 'Temperature & humidity sensor',
|