Skip to content

Commit ce31cac

Browse files
authored
Merge pull request #261 from plugwise/cpaj
fix sign bug in humidity
2 parents d53077d + f836c4a commit ce31cac

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
# Changelog
22

3+
## Ongoing
4+
5+
- PR [#261](https://github.com/plugwise/python-plugwise-usb/pull/261): Sense: bugfix parsing of humidity value as an unsigned int
6+
37
## v0.44.3 - 2025-06-12
48

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

811
## v0.44.2 - 2025-06-11
912

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

1215
## v0.44.1 - 2025-06-10
1316

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

1719
## v0.44.0 - 2025-06-10
1820

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

2123
## v0.43.0(.2)
2224

plugwise_usb/messages/responses.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ class SenseReportResponse(PlugwiseResponse):
930930
def __init__(self) -> None:
931931
"""Initialize SenseReportResponse message object."""
932932
super().__init__(SENSE_REPORT_ID)
933-
self.humidity = Int(0, length=4)
933+
self.humidity = Int(0, length=4, negative=False)
934934
self.temperature = Int(0, length=4)
935935
self._params += [self.humidity, self.temperature]
936936

0 commit comments

Comments
 (0)