When a button is pressed the count is written into the eeprom and then this value is read then displayed on the 16x2 lcd... This is the program...
I thought It would be easy but later I discovered the eeprom is 8bit
My problem is I can't write beyond '255' on eeprom instead of '256' it's written as 0... Is there a way around this issue...
I'm new to Arduino , just learning... taking baby steps to the programming world...
Just keep in mind the size of the variables you're storing. You can't store three ints in EEPROM addresses 0, 1, and 2 and expect to get intelligible results back.