Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
# Changelog

## Ongoing

- PR [#261](https://github.com/plugwise/python-plugwise-usb/pull/261): Sense: bugfix parsing of humidity value as an unsigned int

## v0.44.3 - 2025-06-12

- PR [#260](https://github.com/plugwise/python-plugwise-usb/pull/260)
- Expose enable-auto-joining via CirclePlus interface
- PR [#260](https://github.com/plugwise/python-plugwise-usb/pull/260): Expose enable-auto-joining via CirclePlus interface

## v0.44.2 - 2025-06-11

- Bugfix: implement solution for Issue [#259](https://github.com/plugwise/plugwise_usb-beta/issues/259)

## v0.44.1 - 2025-06-10

- PR [#258](https://github.com/plugwise/python-plugwise-usb/pull/258)
- Sense: make sure NodeFeature.BATTERY is called and configuration parameters are propagated properly
- PR [#258](https://github.com/plugwise/python-plugwise-usb/pull/258): Sense: make sure NodeFeature.BATTERY is called and configuration parameters are propagated properly

## v0.44.0 - 2025-06-10

- PR [#256](https://github.com/plugwise/python-plugwise-usb/pull/256) Implement PlugWise Sense product
- PR [#256](https://github.com/plugwise/python-plugwise-usb/pull/256): Implement Plugwise Sense product

## v0.43.0(.2)

Expand Down
2 changes: 1 addition & 1 deletion plugwise_usb/messages/responses.py
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@
def __init__(self) -> None:
"""Initialize SenseReportResponse message object."""
super().__init__(SENSE_REPORT_ID)
self.humidity = Int(0, length=4)
self.humidity = Int(0, length=4, negative=False)

Check warning on line 933 in plugwise_usb/messages/responses.py

View check run for this annotation

Codecov / codecov/patch

plugwise_usb/messages/responses.py#L933

Added line #L933 was not covered by tests
self.temperature = Int(0, length=4)
self._params += [self.humidity, self.temperature]

Expand Down
Loading