Open ankhiira opened 5 years ago
This only compiles for ESP platforms, though. Can you make your change conditional so it doesn't break compilation on every other platform?
This only compiles for ESP platforms, though. Can you make your change conditional so it doesn't break compilation on every other platform?
Yes, sure.
Before adding functions
EEPROM.begin(EEPROM_SIZE);
andEEPROM.commit();
, there was problem with writing value into EEPROM memory on ESP32. With the two added functions it works well.