From 7bbdbdf2c6661eedaa0da8fee251a05b0421f725 Mon Sep 17 00:00:00 2001 From: lolouk44 Date: Wed, 8 Jul 2020 11:31:50 +0100 Subject: [PATCH] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 21727c8..1f7931e 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,12 @@ services: # Auto-gender selection/config -- This is used to create the calculations such as BMI, Water/Bone Mass etc... # Up to 3 users possible as long as weights do not overlap! + + # Here is the logic used to assign a measured weight to a user: + # if [measured value] is greater than USER1_GT, assign it to USER1 + # else if [measured value] is less than USER2_LT, assign it to USER2 + # else assign it to USER3 (e.g. USER2_LT > [measured value] > USER1_GT) + - USER1_GT=70 # If the weight is greater than this number, we'll assume that we're weighing User #1 - USER1_SEX=male # male / female - USER1_NAME=Jo # Name of the user