
49
During designing process issue with saving data that will not disappear after cutting
out the power appeared. To solve this problem I have created set of functions that allows
us to save data to 1024 bytes of flash memory shared on Arduino Uno. Despite the fact that
in final version it is not used I have left this part of code as a support for future
developments of the code.
void Read_EEPROM()
{
for (int i = 0; i < 1023 ; i++)
{
Serial.print(EEPROM.read(i), BYTE);
}
}
Kommentare zu diesen Handbüchern