We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
On my device, raw data(captured with nRF Connect): 0x10FFC00A07C71388000025E9CAE7DF23150609596F646131
Parsed:
The manufacture bytes are repurposed(the first 2 bytes, 0xC00A in the example above), they are not random values.
Flag bits indicate the packet type and body weight unit, examples:
- 0x24: 0b0000000000100100, not stable(bit 0 equals 0), unit 斤(jin, =1/2 kilogram, aka. catty) - 0x29: 0b0000000000101001, stable(bit 0 equals 1), unit kilogram
So, for the raw data example above, the body weight is 19.91斤 which is approximately 10Kg
bit 0: stable(1) or not(0) bit 2: unit Kg(1) or not(0) bit 3: one decimal(1) or two(0) bit 5: unknown
Edit: I found I made some mistakes in the past when implementing this scale in OpenScale, updated.
The text was updated successfully, but these errors were encountered:
Thanks for sharing!
Sorry, something went wrong.
No branches or pull requests
On my device, raw data(captured with nRF Connect): 0x10FFC00A07C71388000025E9CAE7DF23150609596F646131
Parsed:
The manufacture bytes are repurposed(the first 2 bytes, 0xC00A in the example above), they are not random values.
Flag bits indicate the packet type and body weight unit, examples:
- 0x24: 0b0000000000100100, not stable(bit 0 equals 0), unit 斤(jin, =1/2 kilogram, aka. catty)- 0x29: 0b0000000000101001, stable(bit 0 equals 1), unit kilogramSo, for the raw data example above, the body weight is 19.91斤 which is approximately 10Kgbit 0: stable(1) or not(0)
bit 2: unit Kg(1) or not(0)
bit 3: one decimal(1) or two(0)
bit 5: unknown
Edit: I found I made some mistakes in the past when implementing this scale in OpenScale, updated.
The text was updated successfully, but these errors were encountered: