diff --git a/apps/myprofile/README.md b/apps/myprofile/README.md index f8e79bd6c..4b2fac9f3 100644 --- a/apps/myprofile/README.md +++ b/apps/myprofile/README.md @@ -9,3 +9,7 @@ Configure your personal profile. All settings are optional and are only stored o | HR max | maximum heart rate | BPM | BPM | 60 | Use maximum value when exercising.
If unsure set to 220-age. | | HR min | minimum heart rate | BPM | BPM | 200 | Measure your heart rate after waking up | | Stride length | distance traveled with one step | local length unit | meter | 0 (=not set) | Walk 10 steps and divide the travelled distance by 10 | + +## Developer notes + +Feel free to add additional settings diff --git a/apps/myprofile/settings.js b/apps/myprofile/settings.js index 576627212..80979bd2c 100644 --- a/apps/myprofile/settings.js +++ b/apps/myprofile/settings.js @@ -43,7 +43,6 @@ step:0.01, format: v => v ? require("locale").distance(v, 2) : '-', onchange: v => { - console.log(v); myprofile.strideLength=v; writeProfile(); },