Bugfix: Fixed support for Beurer BF450 scale#1399
Open
VulcanoHex wants to merge 3 commits into
Open
Conversation
I added the values for my Beurer BF450 scale in BeurerSanitasHandler.kt and it worked
oliexdev
reviewed
Jun 14, 2026
| when (val s = data[0].toInt() and 0xFF) { | ||
| 0x00 -> logD("FFF4: misura in corso…") | ||
| 0x01 -> logD("FFF4: misura completata") | ||
| else -> logD("FFF4: status sconosciuto 0x${s.toString(16)}") |
Owner
There was a problem hiding this comment.
could you please translate that into English
oliexdev
reviewed
Jun 14, 2026
| if (pendingBodyComposition) { | ||
| transformed.fat = lastFatPct | ||
| transformed.muscle = lastMusclePct | ||
| transformed.water = lastBodyWater |
Owner
There was a problem hiding this comment.
lastBodyWater in kg would overwrite the transformed water in % here
oliexdev
reviewed
Jun 14, 2026
| val impl = setOf( | ||
| DeviceCapability.BODY_COMPOSITION, | ||
| DeviceCapability.LIVE_WEIGHT_STREAM, | ||
| DeviceCapability.HISTORY_READ, |
Owner
There was a problem hiding this comment.
Is the history read really implemented in this handler?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The merge request i made yesterday was buggy, since i just added the support to an existing handler, that would only take the first measurement for the user. That was a issue in testing on my part.
So i made a custom handler for the Beurer BF450, updated the scale factory and removed the changes in the previous commit.
The custom BF450Handler currently supports:
Still sorry for the previous commit, have a nice day.