21 lines
399 B
C
21 lines
399 B
C
#ifndef SENSOR3_CONFIG_H
|
|
#define SENSOR3_CONFIG_H
|
|
|
|
#include <WString.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
|