Sensor3/lib/patrix/config.h
2024-04-11 13:43:09 +02:00

21 lines
403 B
C

#ifndef SENSOR3_CONFIG_H
#define SENSOR3_CONFIG_H
#include <Preferences.h>
void configSetup();
void configReset();
void configLoad();
String configGetString(const char *name, const char *fallback, bool allowEmpty);
bool configPutString(const char *name, const char *value);
double configGetDouble(const char *name, double fallback);
bool configPutDouble(const char *name, double value);
#endif