zigbee-herdsman-converters 14.0.665 → 14.0.666
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/RMC002.js +3 -0
- package/devices/gledopto.js +8 -0
- package/devices/tuya.js +2 -1
- package/lib/ota/OTA_URLs.md +6 -0
- package/package.json +1 -1
package/devices/RMC002.js
CHANGED
|
@@ -12,6 +12,9 @@ module.exports = [
|
|
|
12
12
|
const endpoint = device.getEndpoint(1);
|
|
13
13
|
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff']);
|
|
14
14
|
await reporting.onOff(endpoint);
|
|
15
|
+
// Reports itself as unknown which is not correct
|
|
16
|
+
device.powerSource = 'Mains (single phase)';
|
|
17
|
+
device.save();
|
|
15
18
|
},
|
|
16
19
|
},
|
|
17
20
|
];
|
package/devices/gledopto.js
CHANGED
|
@@ -690,6 +690,14 @@ module.exports = [
|
|
|
690
690
|
description: 'Zigbee 12W Garden Lamp RGB+CCT (pro)',
|
|
691
691
|
extend: gledoptoExtend.light_onoff_brightness_colortemp_color(),
|
|
692
692
|
},
|
|
693
|
+
{
|
|
694
|
+
zigbeeModel: ['GL-G-101P'],
|
|
695
|
+
model: 'GL-G-101P',
|
|
696
|
+
vendor: 'Gledopto',
|
|
697
|
+
ota: ota.zigbeeOTA,
|
|
698
|
+
description: 'Zigbee 12W garden lamp RGB+CCT (pro)',
|
|
699
|
+
extend: gledoptoExtend.light_onoff_brightness_colortemp_color(),
|
|
700
|
+
},
|
|
693
701
|
{
|
|
694
702
|
zigbeeModel: ['GL-G-002P'],
|
|
695
703
|
model: 'GL-G-002P',
|
package/devices/tuya.js
CHANGED
|
@@ -1479,7 +1479,8 @@ module.exports = [
|
|
|
1479
1479
|
{
|
|
1480
1480
|
fingerprint: [{modelID: 'TS0215A', manufacturerName: '_TZ3000_p6ju8myv'},
|
|
1481
1481
|
{modelID: 'TS0215A', manufacturerName: '_TZ3000_0zrccfgx'},
|
|
1482
|
-
{modelID: 'TS0215A', manufacturerName: '_TZ3000_fsiepnrh'}
|
|
1482
|
+
{modelID: 'TS0215A', manufacturerName: '_TZ3000_fsiepnrh'},
|
|
1483
|
+
{modelID: 'TS0215A', manufacturerName: '_TZ3000_ug1vtuzn'}],
|
|
1483
1484
|
model: 'TS0215A_remote',
|
|
1484
1485
|
vendor: 'TuYa',
|
|
1485
1486
|
description: 'Security remote control',
|
package/lib/ota/OTA_URLs.md
CHANGED
|
@@ -111,3 +111,9 @@ https://github.com/dresden-elektronik/deconz-rest-plugin/wiki/OTA-Image-Types---
|
|
|
111
111
|
Ubisys Zigbee OTA firmware images are made publicly available by Ubisys (first-party) at the following URL:
|
|
112
112
|
|
|
113
113
|
https://www.ubisys.de/en/support/firmware/
|
|
114
|
+
|
|
115
|
+
### Third Reality (3reality)
|
|
116
|
+
|
|
117
|
+
ThirdReality (3reality) Zigbee OTA firmware images are made publicly available by Third Reality, Inc. (first-party) at the following URL:
|
|
118
|
+
|
|
119
|
+
https://tr-zha.s3.amazonaws.com/firmware.json
|