From a0b8639488b32a54af1cb096651dfb16dba95bed Mon Sep 17 00:00:00 2001 From: Manuel Weiser Date: Sun, 23 Feb 2025 21:29:38 +0100 Subject: [PATCH] fix: update comment to clarify NVS reading process --- src/scale.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scale.cpp b/src/scale.cpp index 040559a..2b8c0cc 100644 --- a/src/scale.cpp +++ b/src/scale.cpp @@ -55,7 +55,7 @@ uint8_t start_scale() { Serial.println("Prüfe Calibration Value"); long calibrationValue; - // NVS + // NVS lesen preferences.begin(NVS_NAMESPACE, true); // true = readonly calibrationValue = preferences.getLong(NVS_KEY_CALIBRATION, defaultScaleCalibrationValue); preferences.end();