Skip to content

Commit

Permalink
fix: Fix Schneider Electric WV704R0A0902 occupied_heating_setpoint
Browse files Browse the repository at this point in the history
…min and step size (#6797)

Changed:
setpoint min temp to 5°C
setpoint resolution to 0.5°C

As per device specifications:
https://www.se.com/uk/en/product/download-pdf/WV704R0A0902?filename=Schneider+Electric_Wiser_WV704R0A0902.pdf
  • Loading branch information
jj-uk authored Dec 30, 2023
1 parent 50adc01 commit 925865d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/devices/schneider_electric.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ const definitions: Definition[] = [
legacy.fz.wiser_thermostat, legacy.fz.wiser_itrv_battery, fz.hvac_user_interface, fz.wiser_device_info],
toZigbee: [tz.thermostat_occupied_heating_setpoint, tz.thermostat_keypad_lockout],
meta: {battery: {voltageToPercentage: '3V_2500_3200'}},
exposes: [e.climate().withSetpoint('occupied_heating_setpoint', 7, 30, 1).withLocalTemperature(ea.STATE)
exposes: [e.climate().withSetpoint('occupied_heating_setpoint', 5, 30, 0.5).withLocalTemperature(ea.STATE)
.withRunningState(['idle', 'heat'], ea.STATE).withPiHeatingDemand(), e.battery(), e.battery_voltage()],
configure: async (device, coordinatorEndpoint, logger) => {
const endpoint = device.getEndpoint(1);
Expand Down

0 comments on commit 925865d

Please sign in to comment.