This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
esp-firewall/SourceCode/arduino/lib/Firewall/esp32Eeprom.hpp

17 lines
200 B
C++
Raw Normal View History

2022-04-20 11:40:00 +02:00
#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