This commit is contained in:
lumapu 2022-11-15 15:36:56 +01:00
parent f72a2eb1ec
commit 72652f5a2c
2 changed files with 3 additions and 3 deletions

View file

@ -157,8 +157,8 @@ class settings {
if(!fp) if(!fp)
DPRINTLN(DBG_WARN, F("failed to load json, using default config")); DPRINTLN(DBG_WARN, F("failed to load json, using default config"));
else { else {
DPRINTLN(DBG_INFO, fp.readString()); //DPRINTLN(DBG_INFO, fp.readString());
fp.seek(0, SeekSet); //fp.seek(0, SeekSet);
DynamicJsonDocument root(4096); DynamicJsonDocument root(4096);
DeserializationError err = deserializeJson(root, fp); DeserializationError err = deserializeJson(root, fp);
if(!err) { if(!err) {

View file

@ -13,7 +13,7 @@
//------------------------------------- //-------------------------------------
#define VERSION_MAJOR 0 #define VERSION_MAJOR 0
#define VERSION_MINOR 5 #define VERSION_MINOR 5
#define VERSION_PATCH 36 #define VERSION_PATCH 37
//------------------------------------- //-------------------------------------
typedef struct { typedef struct {