Hi John ,
Could you explain us how to store array value in built-in eeprom with keypad and eeprom library please. Instead to write it on lcd, save it in eeprom:
void loop()
{
char key = keypad.getKey();
if (key != NO_KEY)
{
lcd.print(key);
count++;
if (count==17)
{
lcd.clear();
count=0;
}
}
}
Could you show me a concrete example to help me understand because I’m lost in the technical data, i’m a beginner and i understand better by exemple.
Thanks.