Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend ZHA thermostat local temperature calibration range for Sonoff TRVZB #109691

Conversation

TheNoim
Copy link
Contributor

@TheNoim TheNoim commented Feb 5, 2024

Breaking change

This should not break anything. The PR just increases the range and nothing else changes for the entity.

Proposed change

This PR extends the range of local_temperature_calibration from -2.5 °C - +2.5 °C degrees to -7 °C - +7 °C. The temperature sensor can be way more off than 2.5 degrees. For example, currently my temperature sensor of my TRVZB is 4.6 degrees off. This makes the calibration slider not usable at the moment.

Type of change

  • Dependency upgrade
  • Bugfix (non-breaking change which fixes an issue)
  • New integration (thank you!)
  • New feature (which adds functionality to an existing integration)
  • Deprecation (breaking change to happen in the future)
  • Breaking change (fix/feature causing existing functionality to break)
  • Code quality improvements to existing code or addition of tests

Additional information

  • This PR fixes or closes issue: fixes #
  • This PR is related to issue:
  • Link to documentation pull request:

Values are taken from https://github.com/Koenkk/zigbee-herdsman-converters/blob/master/src/devices/sonoff.ts#L540

Checklist

  • The code change is tested and works locally.
  • Local tests pass. Your PR cannot be merged unless tests pass
  • There is no commented out code in this PR.
  • I have followed the development checklist
  • I have followed the perfect PR recommendations
  • The code has been formatted using Ruff (ruff format homeassistant tests)
  • Tests have been added to verify that the new code works.

If user exposed functionality or configuration variables are added/changed:

If the code communicates with devices, web services, or third-party tools:

  • The manifest file has all fields filled out correctly.
    Updated and included derived files by running: python3 -m script.hassfest.
  • New or updated dependencies have been added to requirements_all.txt.
    Updated by running python3 -m script.gen_requirements_all.
  • For the updated dependencies - a link to the changelog, or at minimum a diff between library versions is added to the PR description.
  • Untested files have been added to .coveragerc.

To help with the load of incoming pull requests:

home-assistant[bot]

This comment was marked as resolved.

@home-assistant

This comment was marked as resolved.

@home-assistant
Copy link

home-assistant bot commented Feb 5, 2024

Hey there @dmulcahey, @Adminiuga, @puddly, @TheJulianJES, mind taking a look at this pull request as it has been labeled with an integration (zha) you are listed as a code owner for? Thanks!

Code owner commands

Code owners of zha can trigger bot actions by commenting:

  • @home-assistant close Closes the pull request.
  • @home-assistant rename Awesome new title Renames the pull request.
  • @home-assistant reopen Reopen the pull request.
  • @home-assistant unassign zha Removes the current integration label and assignees on the pull request, add the integration domain after the command.
  • @home-assistant add-label needs-more-information Add a label (needs-more-information, problem in dependency, problem in custom component) to the pull request.
  • @home-assistant remove-label needs-more-information Remove a label (needs-more-information, problem in dependency, problem in custom component) on the pull request.

@MartinHjelmare MartinHjelmare changed the title Extend thermostat local temperature calibration range Extend ZHA thermostat local temperature calibration range Feb 5, 2024
@TheNoim TheNoim force-pushed the zha_thermostat_local_temp_calibration_range_extension branch from 8f5acc0 to b0b671a Compare February 5, 2024 10:38
@TheNoim TheNoim marked this pull request as ready for review February 5, 2024 10:38
@TheNoim TheNoim force-pushed the zha_thermostat_local_temp_calibration_range_extension branch from b0b671a to 5b11c6d Compare February 5, 2024 14:58
@TheJulianJES
Copy link
Member

Thanks for the PR!
According to ZCL page 429 / "Page 6-17", it seems like the value can only have a value ranging from -25 to 25 (where 25 would mean 2.5°C). That corresponds to the current limits.

Were you able to successfully set this to a higher value on your Sonoff TRV using the clusters menu?
(device page -> three dots -> Manage Zigbee device -> clusters -> Thermostat cluster -> local_temperature_calibration -> write value in upper text field, always leave lower one empty -> press write)

If the Sonoff one supports a higher range, we should probably just change the limits for the Sonoff TRV.
(Z2M seems to support -7°C to 7°C for the Sonoff TRV btw)

@TheNoim
Copy link
Contributor Author

TheNoim commented Feb 6, 2024

Thanks for the PR! According to ZCL page 429 / "Page 6-17", it seems like the value can only have a value ranging from -25 to 25 (where 25 would mean 2.5°C). That corresponds to the current limits.

Were you able to successfully set this to a higher value on your Sonoff TRV using the clusters menu? (device page -> three dots -> Manage Zigbee device -> clusters -> Thermostat cluster -> local_temperature_calibration -> write value in upper text field, always leave lower one empty -> press write)

If the Sonoff one supports a higher range, we should probably just change the limits for the Sonoff TRV. (Z2M seems to support -7°C to 7°C for the Sonoff TRV btw)

@TheJulianJES You are probably right. I changed the PR to only change the values for the TRVZB (I hope this is correct how I did this :/). I also tested the changes on my production home assistant instance and they work (For this I backported the changes for my current home assistant version https://github.com/TheNoim/homeassistant-core/tree/zha_thermostat_local_temp_calibration_range_extension_local).

Edit: I also changed the _attr_native_step value to 0.2 like Z2M https://github.com/Koenkk/zigbee-herdsman-converters/blob/master/src/devices/sonoff.ts#L540

@TheNoim TheNoim force-pushed the zha_thermostat_local_temp_calibration_range_extension branch 2 times, most recently from 923c423 to c36d3cb Compare February 9, 2024 09:14
@TheNoim TheNoim force-pushed the zha_thermostat_local_temp_calibration_range_extension branch 5 times, most recently from 504685b to ada2232 Compare February 18, 2024 14:27
@TheNoim TheNoim force-pushed the zha_thermostat_local_temp_calibration_range_extension branch 3 times, most recently from fb2d513 to b2acf2c Compare February 24, 2024 09:19
@home-assistant home-assistant bot marked this pull request as draft February 24, 2024 22:50
@TheNoim TheNoim force-pushed the zha_thermostat_local_temp_calibration_range_extension branch from b02e4e2 to 03ab73b Compare February 25, 2024 23:40
@TheNoim TheNoim requested a review from dmulcahey February 26, 2024 00:02
@TheNoim TheNoim force-pushed the zha_thermostat_local_temp_calibration_range_extension branch from b09989c to a104083 Compare February 26, 2024 09:12
@TheNoim TheNoim force-pushed the zha_thermostat_local_temp_calibration_range_extension branch from d26d861 to de8f603 Compare February 26, 2024 12:53
@TheNoim TheNoim marked this pull request as ready for review February 26, 2024 12:53
@TheNoim TheNoim requested a review from TheJulianJES February 26, 2024 12:54
@TheNoim TheNoim changed the title Extend ZHA thermostat local temperature calibration range Extend ZHA thermostat local temperature calibration range for Sonoff TRVZB Feb 26, 2024
@dmulcahey dmulcahey merged commit 08497db into home-assistant:dev Feb 27, 2024
23 checks passed
@github-actions github-actions bot locked and limited conversation to collaborators Feb 28, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants