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