From b02d730a6fb9750e9de108a1aa0e28f8f13d6997 Mon Sep 17 00:00:00 2001 From: Ishidres <17363426+Ishidres@users.noreply.github.com> Date: Wed, 20 Mar 2024 14:16:59 +0100 Subject: [PATCH] =?UTF-8?q?set=20default=20wear=20temperature=20to=2029?= =?UTF-8?q?=C2=B0C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/sleeplog/boot.js | 2 +- apps/sleeplog/settings.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/sleeplog/boot.js b/apps/sleeplog/boot.js index 8dbee6812..9a90ef3e6 100644 --- a/apps/sleeplog/boot.js +++ b/apps/sleeplog/boot.js @@ -13,7 +13,7 @@ global.sleeplog = { minConsec: 18E5, // [ms] minimal time to count for consecutive sleep deepTh: 100, // threshold for deep sleep lightTh: 200, // threshold for light sleep - wearTemp: 28, // temperature threshold to count as worn + wearTemp: 29, // temperature threshold to count as worn }, require("Storage").readJSON("sleeplog.json", true) || {}) }; diff --git a/apps/sleeplog/settings.js b/apps/sleeplog/settings.js index 4fd29f3b6..a2c428c29 100644 --- a/apps/sleeplog/settings.js +++ b/apps/sleeplog/settings.js @@ -13,7 +13,7 @@ minConsec: 18E5, // [ms] minimal time to count for consecutive sleep deepTh: 100, // threshold for deep sleep lightTh: 200, // threshold for light sleep - wearTemp: 28, // temperature threshold to count as worn + wearTemp: 29, // temperature threshold to count as worn // app settings breakToD: 12, // [h] time of day when to start/end graphs appTimeout: 0 // lock and backlight timeouts for the app