-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[enocean] Dimplex fan - wrong temperature values #16974
Labels
bug
An unexpected problem or unintended behavior of an add-on
Comments
lovery
added a commit
to lovery/openhab-addons
that referenced
this issue
Jul 1, 2024
Fixes openhab#16974 Signed-off-by: Zhivka Dimova <[email protected]>
andrewfg
pushed a commit
to andrewfg/openhab-addons
that referenced
this issue
Jul 18, 2024
Fixes openhab#16974 Signed-off-by: Zhivka Dimova <[email protected]>
pgfeller
pushed a commit
to pgfeller/openhab-addons
that referenced
this issue
Sep 29, 2024
Fixes openhab#16974 Signed-off-by: Zhivka Dimova <[email protected]> Signed-off-by: Patrik Gfeller <[email protected]>
joni1993
pushed a commit
to joni1993/openhab-addons
that referenced
this issue
Oct 15, 2024
Fixes openhab#16974 Signed-off-by: Zhivka Dimova <[email protected]>
matchews
pushed a commit
to matchews/openhab-addons
that referenced
this issue
Oct 18, 2024
Fixes openhab#16974 Signed-off-by: Zhivka Dimova <[email protected]>
cipianpascu
pushed a commit
to cipianpascu/openhab-addons
that referenced
this issue
Jan 2, 2025
Fixes openhab#16974 Signed-off-by: Zhivka Dimova <[email protected]> Signed-off-by: Ciprian Pascu <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Expected Behavior
I have a Dimplex fan which uses D2_50 EEP.
The device has a sensor for outdoor temperature of the air and it sends values to the openhab.
The supported values are from -64 to 63 according to the specification
Current Behavior
Currently the parsed value are incorrect ~ 2147483541.0°C
Received message from the device is 4D02000F00A954000078003AE000, where the data for OUTT is 1010100 (bytes) = 84, which is in the limits from the specification - 0 to 127, scaled is 84 - 64 = 20, and 20°C is the correct value measured with different device.
Possible Solution
I think that the problem is in the leading 1 of the value for the OUT temperature which converts to
-
because in java there is no unsigned intYour Environment
The text was updated successfully, but these errors were encountered: