ESP32-PaxCounter/include/configmanager.h

11 lines
189 B
C
Raw Normal View History

2018-07-17 15:15:58 +02:00
#ifndef _CONFIGMANAGER_H
#define _CONFIGMANAGER_H
2020-10-02 23:07:24 +02:00
#include <Preferences.h>
#include "globals.h"
2020-10-02 23:07:24 +02:00
void saveConfig(bool erase = false);
void loadConfig(void);
2020-10-02 23:07:24 +02:00
void eraseConfig(void);
#endif