zigbee-herdsman-converters 14.0.581 → 14.0.582
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/philips.js +15 -1
- package/devices/tuya.js +2 -1
- package/devices/vimar.js +11 -0
- package/package.json +1 -1
package/devices/philips.js
CHANGED
|
@@ -1866,7 +1866,7 @@ module.exports = [
|
|
|
1866
1866
|
ota: ota.zigbeeOTA,
|
|
1867
1867
|
},
|
|
1868
1868
|
{
|
|
1869
|
-
zigbeeModel: ['LOM002', 'LOM004'],
|
|
1869
|
+
zigbeeModel: ['LOM002', 'LOM004', 'LOM010'],
|
|
1870
1870
|
model: '046677552343',
|
|
1871
1871
|
vendor: 'Philips',
|
|
1872
1872
|
description: 'Hue smart plug bluetooth',
|
|
@@ -2103,6 +2103,20 @@ module.exports = [
|
|
|
2103
2103
|
description: 'Hue White Ambinance G25 E26 Edison Filament Globe',
|
|
2104
2104
|
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [222, 454]}),
|
|
2105
2105
|
},
|
|
2106
|
+
{
|
|
2107
|
+
zigbeeModel: ['LWE005'],
|
|
2108
|
+
model: '9290024796',
|
|
2109
|
+
vendor: 'Philips',
|
|
2110
|
+
description: 'Hue Filament White E12',
|
|
2111
|
+
extend: hueExtend.light_onoff_brightness(),
|
|
2112
|
+
},
|
|
2113
|
+
{
|
|
2114
|
+
zigbeeModel: ['LTA007'],
|
|
2115
|
+
model: '9290024783',
|
|
2116
|
+
vendor: 'Philips',
|
|
2117
|
+
description: 'Hue Filament White Ambiance A60/E27 Bluetooth',
|
|
2118
|
+
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [222, 454]}),
|
|
2119
|
+
},
|
|
2106
2120
|
{
|
|
2107
2121
|
zigbeeModel: ['LWV002'],
|
|
2108
2122
|
model: '046677551780',
|
package/devices/tuya.js
CHANGED
|
@@ -559,7 +559,8 @@ module.exports = [
|
|
|
559
559
|
{modelID: 'TS0503B', manufacturerName: '_TZ3210_a5fxguxr'},
|
|
560
560
|
{modelID: 'TS0503B', manufacturerName: '_TZ3210_778drfdt'},
|
|
561
561
|
{modelID: 'TS0503B', manufacturerName: '_TZ3000_g5xawfcq'},
|
|
562
|
-
{modelID: 'TS0503B', manufacturerName: '_TZ3210_trm3l2aw'}
|
|
562
|
+
{modelID: 'TS0503B', manufacturerName: '_TZ3210_trm3l2aw'},
|
|
563
|
+
{modelID: 'TS0503B', manufacturerName: '_TZ3210_odlghna1'}],
|
|
563
564
|
model: 'TS0503B',
|
|
564
565
|
vendor: 'TuYa',
|
|
565
566
|
description: 'Zigbee RGB light',
|
package/devices/vimar.js
CHANGED
|
@@ -6,6 +6,17 @@ const extend = require('../lib/extend');
|
|
|
6
6
|
const e = exposes.presets;
|
|
7
7
|
|
|
8
8
|
module.exports = [
|
|
9
|
+
{
|
|
10
|
+
zigbeeModel: ['On_Off_Switch_Module_v1.0'],
|
|
11
|
+
model: '03981',
|
|
12
|
+
vendor: 'Vimar',
|
|
13
|
+
description: 'IoT connected relay module',
|
|
14
|
+
extend: extend.switch(),
|
|
15
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
16
|
+
const endpoint = device.getEndpoint(10);
|
|
17
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff']);
|
|
18
|
+
},
|
|
19
|
+
},
|
|
9
20
|
{
|
|
10
21
|
zigbeeModel: ['2_Way_Switch_v1.0', 'On_Off_Switch_v1.0'],
|
|
11
22
|
model: '14592.0',
|