Lots of settings stuff: The webinterface at /settings now lets you change the settings. Also, these changes will be saved to SPIFFS and loaded after a reboot.

This commit is contained in:
2019-10-09 05:57:20 +02:00
parent 205a0df842
commit b4aa711940
4 changed files with 146 additions and 7 deletions

View File

@ -81,3 +81,6 @@ extern Setting all_settings[];
extern const uint8_t all_settings_size;
bool change_setting(const char* key, uint16_t new_value);
uint16_t setting_default(Setting* s);
bool save_settings();
bool load_settings();