1

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?

1 Answer 1

1

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

0

Not the answer you're looking for? Browse other questions tagged or ask your own question.