We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e42f13 commit acaa6a0Copy full SHA for acaa6a0
plugwise_usb/messages/requests.py
@@ -1433,8 +1433,8 @@ def __init__( # noqa: PLR0913
1433
temp_hum_value = Int(1 if temp_hum else 0, length=2)
1434
lower_bound_value = Int(lower_bound, length=4)
1435
upper_bound_value = Int(upper_bound, length=4)
1436
- direction_value_1 = Int(0 if direction else 1, length=2)
1437
- direction_value_2 = Int(1 if direction else 0, length=2)
+ direction_value_1 = Int(1 if direction else 0, length=2)
+ direction_value_2 = Int(0 if direction else 1, length=2)
1438
self._args += [
1439
temp_hum_value,
1440
lower_bound_value,
0 commit comments