Arduino IDE has simple EEPROM library, which has only 2 functions: "read" and "write". Lets write a demo program which will save to EEPROM anything received from serial port and if the 's' symbol is received it will return all stored symbols.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <EEPROM.h> // include library | |
int sz; // size of received data | |
void setup() | |
{ | |
Serial.begin(9600); | |
sz = 0; | |
} | |
void loop() | |
{ | |
if(0 < Serial.available()) | |
{ | |
int r = Serial.read(); | |
if ('s' == r) { | |
Serial.println("\nYour history"); | |
for(int i=0; i<sz; ++i) | |
Serial.print(EEPROM.read(i)); | |
Serial.println(); | |
} | |
EEPROM.write(sz++, r); | |
} | |
delay(200); | |
} |
No comments:
Post a Comment