-
-
Notifications
You must be signed in to change notification settings - Fork 137
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
New datatype #1027
Comments
are you sure the value is really supposed to be 63.113 degrees (or whatever)? it could also just be a ULG with divisor 65536, then it would be 4128881/65536 = 63,0017 |
Yes I'm sure that it is correct value. |
provide some sample values with those readings please so I can verify. hex message sequence plus value read visually from the hardware |
Ok. But we have to wait for some sun ;-) |
Her you are |
Description
Hi,
I am trying to complete the ebus message definitions for the SM1 solar module. I managed to decrypt the data in the broadcast message, but I can't match the data type. This is 4 byte data. The first two bytes are the FLT data type and the next two bytes are the UIN data type. The resulting value is the sum of the FLT and UIN data.
For example:
Input data 71 00 3f 00
decode flt 7100 -> 0.113
decode uin 3f00 -> 63
manual addition 63+0.113
Output: 63.113
Is it possible to add such a type? Or maybe there is already one and I just can't find it ;-).
Regards,
Maciek
The text was updated successfully, but these errors were encountered: