Skip to content

Commit 9489c19

Browse files
authored
Change hrm step to 1 for finer tuning
1 parent 4f109e7 commit 9489c19

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

apps/sleeplog/settings.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
maxAwake: 36E5, // [ms] maximal awake time to count for consecutive sleep
1414
minConsec: 18E5, // [ms] minimal time to count for consecutive sleep
1515
deepTh: 150, // threshold for deep sleep
16-
lightTh: 300,// threshold for light sleep
17-
hrmLightTh: 74,// threshold for light sleep
18-
hrmDeepTh:60,// threshold for deep sleep
16+
lightTh: 300,
17+
hrmLightTh: 74,
18+
hrmDeepTh:60,// threshold for light sleep
1919
wearTemp: 19.5, // temperature threshold to count as worn
2020
// app settings
2121
breakToD: 12, // [h] time of day when to start/end graphs
@@ -302,7 +302,7 @@
302302
},
303303
/*LANG*/"Deep Sleep": {
304304
value: settings.hrmDeepTh,
305-
step: 2,
305+
step: 1,
306306
min: 30,
307307
max: 100,
308308
wrap: true,
@@ -314,7 +314,7 @@
314314
},
315315
/*LANG*/"Light Sleep": {
316316
value: settings.hrmLightTh,
317-
step: 2,
317+
step: 1,
318318
min: 30,
319319
max: 100,
320320
wrap: true,
@@ -399,7 +399,7 @@
399399
} else {
400400
/*menu =*/ E.showMenu(thresholdsMenu);
401401
}
402-
}
402+
};
403403

404404
function showOtherSettings() {
405405
// setup logging menu

0 commit comments

Comments
 (0)