Sparkfun Pro Micro 5V/16MHz EEPROM?

Hi,

I’m trying to compile an Arduino sketch for the Sparkfun Pro Micro 5V/16MHz board, but I’m getting a compile error ‘eeprom.h not found’. Googling around a bit, I see this error can occur if the selected board doesn’t have EEPROM - but the specs for the Pro Micro at

https://cdn.sparkfun.com/datasheets/Dev … ga32U4.pdf

show 1KB EEPROM available.

Am I missing something here?

TIA,

Frank

Never mind. I didn’t realize the #include was case-sensitive. The proper line is:

#include <EEPROM.h>

Regards,

Frank