ofithcheallaigh / masters_project

This repo is for my MSc in AI research project
0 stars 0 forks source link

Investigate saving Arduino data to memory #13

Closed ofithcheallaigh closed 1 year ago

ofithcheallaigh commented 1 year ago

At the minute, the basic Arduino code is printing the data to the serial monitor - this data needs to be saved to memory.

ofithcheallaigh commented 1 year ago

The Uno has 512 bytes of EEPROM available - this is data that is kept when the uC loses power.

We can write to the EEPROM using the EEPROM.write() function. It will also need the `#include header.

Other functions include

A guide can be found here: https://docs.arduino.cc/learn/programming/eeprom-guide

ofithcheallaigh commented 1 year ago

This issue was for writing to EEPROM. There is no point writing to EEPROM, since the data cannot be gotten off the EEPROM for later analysis.

This will be closed, and issue created for writing to SD card.