zigbee-herdsman-converters 14.0.574 → 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/philips.js +7 -0
- package/devices/tuya.js +4 -0
- 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);
|
package/devices/philips.js
CHANGED
|
@@ -2455,6 +2455,13 @@ module.exports = [
|
|
|
2455
2455
|
description: 'Akari downlight',
|
|
2456
2456
|
extend: hueExtend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
|
|
2457
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
|
+
},
|
|
2458
2465
|
{
|
|
2459
2466
|
zigbeeModel: ['LCD006'],
|
|
2460
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'},
|