#ifndef SENSOR3_CONFIG_H #define SENSOR3_CONFIG_H #include 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