feat: persistent settings in LittleFS JSON

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-17 20:08:03 +07:00
co-authored by Claude Opus 4.8
parent 5c96cfc1f3
commit 4e53e7388f
3 changed files with 76 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#pragma once
#include <Arduino.h>
struct AppSettings {
float altitudeM;
int tzOffsetMin;
float lat;
float lon;
};
extern AppSettings settings;
void settingsBegin();
bool settingsSave();
void settingsDefaults();