25 lines
391 B
C
25 lines
391 B
C
|
//
|
||
|
// Created by robtor on 05.01.23.
|
||
|
//
|
||
|
|
||
|
#ifndef FLOATPUMP_CONFIG_STORE_H
|
||
|
#define FLOATPUMP_CONFIG_STORE_H
|
||
|
|
||
|
#include <chrono>
|
||
|
|
||
|
namespace floatpump {
|
||
|
|
||
|
class Config_Store {
|
||
|
public:
|
||
|
void saveToFlash();
|
||
|
void resetDefaults();
|
||
|
void loadFromFlash();
|
||
|
|
||
|
bool testBool = false;
|
||
|
bool testPercent;
|
||
|
};
|
||
|
|
||
|
} // floatpump
|
||
|
|
||
|
#endif //FLOATPUMP_CONFIG_STORE_H
|