oliexdev / openScale

Open-source weight and body metrics tracker, with support for Bluetooth scales
GNU General Public License v3.0
1.71k stars 296 forks source link

Beurer BF720 wrong BMI data #956

Closed githubbapoopa closed 1 year ago

githubbapoopa commented 1 year ago

Beurer BF720 shows the wrong BMI data.

Instead of the BMI values the weight values are displayed.

for example

real data: weight 80kg, BMI 24 data in openscale weight 80kg, BMI 80

Instead of the correct BMI data the weight ist "doubled".

Reproduced with 2.5.1

2.4.6 works fine btw

oliexdev commented 1 year ago

please double check your height in openScale.

openScale use the following simple formula for the BMI:

return weight / ((body_height / 100.0f)*(body_height / 100.0f));