Encore PTL
Encore PTL

Reputation: 8214

Save output from Lilypad Arduino

When we call the Serial.println function in the sketch it print the output to Serial channel.

Is there a way to get the output later when the LilyPad is connected to a PC and save it to disk in PC?

Upvotes: 1

Views: 436

Answers (1)

ZnArK
ZnArK

Reputation: 1541

You could add an SD Card and save data to that. Although it would be much simpler to use the onboard 512 bytes of EEPROM.

EEPROM Write Tutorial

EEPROM.write(addr, val);

EEPROM Read Tutorial

value = EEPROM.read(address);

Depending on your IO pins available, you could also add some extra EEPROM.

I2CEEPROM

Upvotes: 1

Related Questions