36 lines
670 B
C
36 lines
670 B
C
#ifndef SENSOR3_CONFIG_H
|
|
#define SENSOR3_CONFIG_H
|
|
|
|
#include <WString.h>
|
|
|
|
void configSetup();
|
|
|
|
void configLoop();
|
|
|
|
void configReset();
|
|
|
|
|
|
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);
|
|
|
|
|
|
uint64_t configGetUint64_t(const char *name, uint64_t fallback);
|
|
|
|
void configPutUint64_t(const char *name, uint64_t value);
|
|
|
|
|
|
uint8_t configGetUint8_t(const char *name, uint8_t fallback);
|
|
|
|
void configPutUint8_t(const char *name, uint8_t value);
|
|
|
|
|
|
void configPrint();
|
|
|
|
#endif
|