You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the video where you go through how to build an EEPROM programmer with the Arduino Uno you ended up using delay(10); at the end of the writeEEPROM() function. Did you come to any understanding why this was the case?
What if you want to write all the 2048 bytes, then it would take almost 20 seconds and it would be even worse for an EEPROM with 128 or 256 kbits.
Would it be possible to optimize the writeEEPROM() function to let it take an array of bytes and put the delay(10) at the end of writing all the bytes?