// // Created by robtor on 05.01.23. // #ifndef FLOATPUMP_CONFIG_STORE_H #define FLOATPUMP_CONFIG_STORE_H #include namespace floatpump { class Config_Store { public: void saveToFlash(); void resetDefaults(); void loadFromFlash(); bool testBool = false; bool testPercent; }; } // floatpump #endif //FLOATPUMP_CONFIG_STORE_H