zigbee-herdsman-converters 14.0.426 → 14.0.427
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/gidealed.js +11 -0
- package/devices/jumitech.js +18 -0
- package/devices/lixee.js +1 -1
- package/devices/philips.js +9 -0
- package/devices/stelpro.js +3 -3
- package/devices/xiaomi.js +4 -8
- package/npm-shrinkwrap.json +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
const extend = require('../lib/extend');
|
|
2
|
+
|
|
3
|
+
module.exports = [
|
|
4
|
+
{
|
|
5
|
+
zigbeeModel: ['A11'],
|
|
6
|
+
model: 'ZC05M',
|
|
7
|
+
vendor: 'GIDEALED',
|
|
8
|
+
description: 'Smart Zigbee RGB LED strip controller',
|
|
9
|
+
extend: extend.light_onoff_brightness_colortemp_color({supportsHS: true, colorTempRange: [153, 500]}),
|
|
10
|
+
},
|
|
11
|
+
];
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
const reporting = require('../lib/reporting');
|
|
2
|
+
const extend = require('../lib/extend');
|
|
3
|
+
|
|
4
|
+
module.exports = [
|
|
5
|
+
{
|
|
6
|
+
zigbeeModel: ['J2182548'],
|
|
7
|
+
model: 'J2182548',
|
|
8
|
+
vendor: 'JUMITECH APS',
|
|
9
|
+
description: 'ZigBee AC phase-cut dimmer single-line',
|
|
10
|
+
extend: extend.light_onoff_brightness({noConfigure: true}),
|
|
11
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
12
|
+
await extend.light_onoff_brightness().configure(device, coordinatorEndpoint, logger);
|
|
13
|
+
const endpoint = device.getEndpoint(1);
|
|
14
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'genLevelCtrl']);
|
|
15
|
+
await reporting.onOff(endpoint);
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
];
|
package/devices/lixee.js
CHANGED
|
@@ -298,7 +298,7 @@ const clustersDef = {
|
|
|
298
298
|
const exposedData = [
|
|
299
299
|
// Historique
|
|
300
300
|
{cluster: clustersDef._0x0702, att: 'meterSerialNumber', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.single, linkyMode: linkyModeDef.legacy, exposes: exposes.text('ADCO', ea.STATE).withProperty('meter_serial_number').withDescription('Serial Number')},
|
|
301
|
-
{cluster: clustersDef._0x0702, att: 'currentSummDelivered', reportable: true, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.
|
|
301
|
+
{cluster: clustersDef._0x0702, att: 'currentSummDelivered', reportable: true, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.all, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('BASE', ea.STATE).withUnit('kWh').withProperty('current_summ_delivered').withDescription('Base index')},
|
|
302
302
|
{cluster: clustersDef._0xFF66, att: 'currentTarif', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.single, linkyMode: linkyModeDef.legacy, exposes: exposes.text('OPTARIF', ea.STATE).withProperty('current_tarif').withDescription('Tarif option')},
|
|
303
303
|
{cluster: clustersDef._0x0B01, att: 'availablePower', reportable: false, onlyProducer: false, linkyPhase: linkyPhaseDef.single, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('ISOUSC', ea.STATE).withUnit('A').withProperty('available_power').withDescription('Subscribed intensity level')},
|
|
304
304
|
{cluster: clustersDef._0x0702, att: 'currentTier1SummDelivered', reportable: false, report: {change: 100}, onlyProducer: false, linkyPhase: linkyPhaseDef.single, linkyMode: linkyModeDef.legacy, exposes: exposes.numeric('HCHC', ea.STATE).withUnit('kWh').withProperty('current_tier1_summ_delivered').withDescription('HCHC index')},
|
package/devices/philips.js
CHANGED
|
@@ -2437,6 +2437,15 @@ module.exports = [
|
|
|
2437
2437
|
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
2438
2438
|
ota: ota.zigbeeOTA,
|
|
2439
2439
|
},
|
|
2440
|
+
{
|
|
2441
|
+
zigbeeModel: ['LCX001'],
|
|
2442
|
+
model: '929002422702',
|
|
2443
|
+
vendor: 'Philips',
|
|
2444
|
+
description: 'Hue Play gradient lightstrip 55',
|
|
2445
|
+
meta: {turnsOffAtBrightness1: true},
|
|
2446
|
+
extend: hueExtend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
|
|
2447
|
+
ota: ota.zigbeeOTA,
|
|
2448
|
+
},
|
|
2440
2449
|
{
|
|
2441
2450
|
zigbeeModel: ['LCX002'],
|
|
2442
2451
|
model: '929002422801',
|
package/devices/stelpro.js
CHANGED
|
@@ -47,7 +47,7 @@ module.exports = [
|
|
|
47
47
|
toZigbee: [tz.thermostat_local_temperature, tz.thermostat_occupancy, tz.thermostat_occupied_heating_setpoint,
|
|
48
48
|
tz.thermostat_temperature_display_mode, tz.thermostat_keypad_lockout, tz.thermostat_system_mode,
|
|
49
49
|
tz.thermostat_running_state, tz.stelpro_thermostat_outdoor_temperature],
|
|
50
|
-
exposes: [e.local_temperature(), e.keypad_lockout(),
|
|
50
|
+
exposes: [e.local_temperature(), e.keypad_lockout(), e.humidity(),
|
|
51
51
|
exposes.climate().withSetpoint('occupied_heating_setpoint', 5, 30, 0.5).withLocalTemperature()
|
|
52
52
|
.withSystemMode(['off', 'auto', 'heat']).withRunningState(['idle', 'heat'])],
|
|
53
53
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
@@ -79,7 +79,7 @@ module.exports = [
|
|
|
79
79
|
toZigbee: [tz.thermostat_local_temperature, tz.thermostat_occupancy, tz.thermostat_occupied_heating_setpoint,
|
|
80
80
|
tz.thermostat_temperature_display_mode, tz.thermostat_keypad_lockout, tz.thermostat_system_mode, tz.thermostat_running_state,
|
|
81
81
|
tz.stelpro_thermostat_outdoor_temperature],
|
|
82
|
-
exposes: [e.local_temperature(), e.keypad_lockout(),
|
|
82
|
+
exposes: [e.local_temperature(), e.keypad_lockout(), e.humidity(),
|
|
83
83
|
exposes.climate().withSetpoint('occupied_heating_setpoint', 5, 30, 0.5).withLocalTemperature()
|
|
84
84
|
.withSystemMode(['off', 'auto', 'heat']).withRunningState(['idle', 'heat'])],
|
|
85
85
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
@@ -142,7 +142,7 @@ module.exports = [
|
|
|
142
142
|
toZigbee: [tz.thermostat_local_temperature, tz.thermostat_occupancy, tz.thermostat_occupied_heating_setpoint,
|
|
143
143
|
tz.thermostat_temperature_display_mode, tz.thermostat_keypad_lockout, tz.thermostat_system_mode, tz.thermostat_running_state,
|
|
144
144
|
tz.stelpro_thermostat_outdoor_temperature],
|
|
145
|
-
exposes: [e.local_temperature(), e.keypad_lockout(),
|
|
145
|
+
exposes: [e.local_temperature(), e.keypad_lockout(), e.humidity(),
|
|
146
146
|
exposes.climate().withSetpoint('occupied_heating_setpoint', 5, 30, 0.5).withLocalTemperature()
|
|
147
147
|
.withSystemMode(['off', 'auto', 'heat']).withRunningState(['idle', 'heat'])],
|
|
148
148
|
configure: async (device, coordinatorEndpoint, logger) => {
|
package/devices/xiaomi.js
CHANGED
|
@@ -353,8 +353,7 @@ module.exports = [
|
|
|
353
353
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
354
354
|
const endpoint1 = device.getEndpoint(1);
|
|
355
355
|
// set "event" mode
|
|
356
|
-
await endpoint1.write('aqaraOpple', {'mode': 1}, {manufacturerCode: 0x115f,
|
|
357
|
-
disableDefaultResponse: true, disableResponse: true});
|
|
356
|
+
await endpoint1.write('aqaraOpple', {'mode': 1}, {manufacturerCode: 0x115f, disableResponse: true});
|
|
358
357
|
},
|
|
359
358
|
},
|
|
360
359
|
{
|
|
@@ -378,8 +377,7 @@ module.exports = [
|
|
|
378
377
|
e.action(['single_left', 'double_left', 'single_right', 'double_right', 'single_both', 'double_both'])],
|
|
379
378
|
onEvent: preventReset,
|
|
380
379
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
381
|
-
await device.getEndpoint(1).write('aqaraOpple', {'mode': 1}, {manufacturerCode: 0x115f,
|
|
382
|
-
disableDefaultResponse: true, disableResponse: true});
|
|
380
|
+
await device.getEndpoint(1).write('aqaraOpple', {'mode': 1}, {manufacturerCode: 0x115f, disableResponse: true});
|
|
383
381
|
},
|
|
384
382
|
},
|
|
385
383
|
{
|
|
@@ -397,8 +395,7 @@ module.exports = [
|
|
|
397
395
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
398
396
|
const endpoint1 = device.getEndpoint(1);
|
|
399
397
|
// set "event" mode
|
|
400
|
-
await endpoint1.write('aqaraOpple', {'mode': 1}, {manufacturerCode: 0x115f,
|
|
401
|
-
disableDefaultResponse: true, disableResponse: true});
|
|
398
|
+
await endpoint1.write('aqaraOpple', {'mode': 1}, {manufacturerCode: 0x115f, disableResponse: true});
|
|
402
399
|
},
|
|
403
400
|
},
|
|
404
401
|
{
|
|
@@ -424,8 +421,7 @@ module.exports = [
|
|
|
424
421
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
425
422
|
const endpoint1 = device.getEndpoint(1);
|
|
426
423
|
// set "event" mode
|
|
427
|
-
await endpoint1.write('aqaraOpple', {'mode': 1}, {manufacturerCode: 0x115f,
|
|
428
|
-
disableDefaultResponse: true, disableResponse: true});
|
|
424
|
+
await endpoint1.write('aqaraOpple', {'mode': 1}, {manufacturerCode: 0x115f, disableResponse: true});
|
|
429
425
|
},
|
|
430
426
|
},
|
|
431
427
|
{
|
package/npm-shrinkwrap.json
CHANGED