zigbee-herdsman-converters 14.0.572 → 14.0.575
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/bitron.js +3 -1
- package/devices/custom_devices_diy.js +11 -5
- package/devices/lupus.js +1 -1
- package/devices/philips.js +14 -0
- package/devices/tuya.js +5 -0
- package/devices/yale.js +1 -2
- package/package.json +1 -1
package/devices/bitron.js
CHANGED
|
@@ -186,7 +186,8 @@ module.exports = [
|
|
|
186
186
|
vendor: 'SMaBiT (Bitron Video)',
|
|
187
187
|
description: 'Wireless wall thermostat with relay',
|
|
188
188
|
fromZigbee: [fz.legacy.bitron_thermostat_att_report, fz.battery, fz.hvac_user_interface],
|
|
189
|
-
toZigbee: [tz.
|
|
189
|
+
toZigbee: [tz.thermostat_control_sequence_of_operation, tz.thermostat_occupied_heating_setpoint,
|
|
190
|
+
tz.thermostat_occupied_cooling_setpoint, tz.thermostat_local_temperature_calibration, tz.thermostat_local_temperature,
|
|
190
191
|
tz.thermostat_running_state, tz.thermostat_temperature_display_mode, tz.thermostat_keypad_lockout, tz.thermostat_system_mode],
|
|
191
192
|
exposes: [e.battery(), exposes.climate().withSetpoint('occupied_heating_setpoint', 7, 30, 0.5).withLocalTemperature()
|
|
192
193
|
.withSystemMode(['off', 'auto', 'heat']).withRunningState(['idle', 'heat', 'cool'])
|
|
@@ -201,6 +202,7 @@ module.exports = [
|
|
|
201
202
|
await reporting.thermostatTemperature(endpoint);
|
|
202
203
|
await reporting.thermostatTemperatureCalibration(endpoint);
|
|
203
204
|
await reporting.thermostatOccupiedHeatingSetpoint(endpoint);
|
|
205
|
+
await reporting.thermostatOccupiedCoolingSetpoint(endpoint);
|
|
204
206
|
await reporting.thermostatRunningState(endpoint);
|
|
205
207
|
await reporting.batteryAlarmState(endpoint);
|
|
206
208
|
await reporting.batteryVoltage(endpoint);
|
|
@@ -435,19 +435,25 @@ module.exports = [
|
|
|
435
435
|
zigbeeModel: ['EFEKTA_PWS'],
|
|
436
436
|
model: 'EFEKTA_PWS',
|
|
437
437
|
vendor: 'Custom devices (DiY)',
|
|
438
|
-
description: '[Plant Wattering Sensor]',
|
|
439
|
-
fromZigbee: [fz.temperature, fz.soil_moisture, fz.battery],
|
|
440
|
-
toZigbee: [tz.factory_reset],
|
|
438
|
+
description: '[Plant Wattering Sensor, CR2450, CR2477 batteries, temperature ]',
|
|
439
|
+
fromZigbee: [fz.temperature, fz.humidity, fz.illuminance, fz.soil_moisture, fz.battery, fzLocal.node_config],
|
|
440
|
+
toZigbee: [tz.factory_reset, tzLocal.node_config],
|
|
441
441
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
442
442
|
const firstEndpoint = device.getEndpoint(1);
|
|
443
|
-
await reporting.bind(firstEndpoint, coordinatorEndpoint, [
|
|
443
|
+
await reporting.bind(firstEndpoint, coordinatorEndpoint, [
|
|
444
|
+
'genPowerCfg', 'msTemperatureMeasurement', 'msSoilMoisture']);
|
|
444
445
|
const overides = {min: 0, max: 21600, change: 0};
|
|
445
446
|
await reporting.batteryVoltage(firstEndpoint, overides);
|
|
446
447
|
await reporting.batteryPercentageRemaining(firstEndpoint, overides);
|
|
447
448
|
await reporting.temperature(firstEndpoint, overides);
|
|
448
449
|
await reporting.soil_moisture(firstEndpoint, overides);
|
|
450
|
+
const payload1 = [{attribute: {ID: 0x0201, type: 0x21},
|
|
451
|
+
minimumReportInterval: 0, maximumReportInterval: 21600, reportableChange: 0}];
|
|
452
|
+
await firstEndpoint.configureReporting('genPowerCfg', payload1);
|
|
449
453
|
},
|
|
450
|
-
exposes: [e.soil_moisture(), e.battery(), e.temperature()
|
|
454
|
+
exposes: [e.soil_moisture(), e.battery(), e.temperature(),
|
|
455
|
+
exposes.numeric('report_delay', ea.STATE_SET).withUnit('Minutes').withValueMin(1).withValueMax(240)
|
|
456
|
+
.withDescription('Adjust Report Delay. Setting the time in minutes, by default 15 minutes')],
|
|
451
457
|
},
|
|
452
458
|
{
|
|
453
459
|
zigbeeModel: ['EFEKTA_THP_LR'],
|
package/devices/lupus.js
CHANGED
package/devices/philips.js
CHANGED
|
@@ -951,6 +951,13 @@ module.exports = [
|
|
|
951
951
|
description: 'Hue white ambiance Adore wall light',
|
|
952
952
|
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
953
953
|
},
|
|
954
|
+
{
|
|
955
|
+
zigbeeModel: ['929003056001'],
|
|
956
|
+
model: '929003056001',
|
|
957
|
+
vendor: 'Philips',
|
|
958
|
+
description: 'Hue white ambiance Adore bathroom mirror light with Bluetooth',
|
|
959
|
+
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
960
|
+
},
|
|
954
961
|
{
|
|
955
962
|
zigbeeModel: ['LTW015'],
|
|
956
963
|
model: '9290011998B',
|
|
@@ -2448,6 +2455,13 @@ module.exports = [
|
|
|
2448
2455
|
description: 'Akari downlight',
|
|
2449
2456
|
extend: hueExtend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
|
|
2450
2457
|
},
|
|
2458
|
+
{
|
|
2459
|
+
zigbeeModel: ['LCD004'],
|
|
2460
|
+
model: '8719514382350',
|
|
2461
|
+
vendor: 'Philips',
|
|
2462
|
+
description: 'Akari downlight',
|
|
2463
|
+
extend: hueExtend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
|
|
2464
|
+
},
|
|
2451
2465
|
{
|
|
2452
2466
|
zigbeeModel: ['LCD006'],
|
|
2453
2467
|
model: '9290031346',
|
package/devices/tuya.js
CHANGED
|
@@ -467,6 +467,10 @@ module.exports = [
|
|
|
467
467
|
return {'l1': 1, 'l2': 2};
|
|
468
468
|
},
|
|
469
469
|
meta: {multiEndpoint: true},
|
|
470
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
471
|
+
const endpoint = device.getEndpoint(1);
|
|
472
|
+
await endpoint.read('genBasic', ['manufacturerName', 'zclVersion', 'appVersion', 'modelId', 'powerSource', 0xfffe]);
|
|
473
|
+
},
|
|
470
474
|
},
|
|
471
475
|
{
|
|
472
476
|
fingerprint: [{modelID: 'TS011F', manufacturerName: '_TZ3000_rk2yzt0u'},
|
|
@@ -1024,6 +1028,7 @@ module.exports = [
|
|
|
1024
1028
|
{modelID: 'TS0201', manufacturerName: '_TZ3000_fllyghyj'},
|
|
1025
1029
|
{modelID: 'TS0201', manufacturerName: '_TZ3000_dowj6gyi'},
|
|
1026
1030
|
{modelID: 'TS0201', manufacturerName: '_TZ3000_yd2e749y'},
|
|
1031
|
+
{modelID: 'TS0201', manufacturerName: '_TZ3000_6uzkisv2'},
|
|
1027
1032
|
],
|
|
1028
1033
|
model: 'WSD500A',
|
|
1029
1034
|
vendor: 'TuYa',
|
package/devices/yale.js
CHANGED
|
@@ -10,8 +10,7 @@ const lockExtend = (meta) => {
|
|
|
10
10
|
fz.lock_user_status_response],
|
|
11
11
|
toZigbee: [tz.lock, tz.pincode_lock, tz.lock_userstatus],
|
|
12
12
|
meta: {pinCodeCount: 250, ...meta},
|
|
13
|
-
exposes: [e.lock(), e.battery(), e.pincode(), e.lock_action(), e.lock_action_source_name(), e.lock_action_user(),
|
|
14
|
-
e.lock_action_user()],
|
|
13
|
+
exposes: [e.lock(), e.battery(), e.pincode(), e.lock_action(), e.lock_action_source_name(), e.lock_action_user()],
|
|
15
14
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
16
15
|
const endpoint = device.getEndpoint(1);
|
|
17
16
|
await reporting.bind(endpoint, coordinatorEndpoint, ['closuresDoorLock', 'genPowerCfg']);
|