I have a file that holds data for eight channels; each channel value is either 255 or Zero. The data shown below depicts four rows; each row has the individual value for each channel.
...
255 255 255 255 0 0 0 0
255 255 255 255 0 0 0 0
255 255 255 255 0 0 0 0
255 255 255 255 0 0 0 255
...
The timing is important. Each row should be read during a 5 milliseconds period.
Since this is file is very long, I been thinking on using PROGMEM to load the data by chunks into FLASH memory instead of reading the data off an SD Card.
As far as testing, I just ordered an SD Card, so I don't have means to use it.
I feel very confident reading off the sd card and parsing. Never before touched PROGMEM
PROGMEM looks very challenging and not sure if using it will help me at all.
Can you please, advise me what way to go? I am not sure if I am on the right path for this coding.
Arduino UNO and Nano are my boards
Thanks so much