Sensor3/lib/patrix/config.h

25 lines
442 B
C

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