16 lines
200 B
C++
16 lines
200 B
C++
#ifndef ESP32_EEPROM_HPP
|
|
#define ESP32_EEPROM_HPP
|
|
|
|
#include "EEPROM.h"
|
|
|
|
class esp32Eeprom
|
|
{
|
|
private:
|
|
uint16_t eeprom_size;
|
|
|
|
public:
|
|
esp32Eeprom(const uint16_t);
|
|
~esp32Eeprom();
|
|
};
|
|
|
|
#endif
|