Hi
I need to send a very long array which is stored in an excel file with each field as in :
{254,32,254,16,0,117,24,179},
{254,64,254,16,0,118,24,179},
{254,128,254,16,0,119,24,179},
{191,4,254,8,0,122,24,179},
...
I am already loading it 576 lines at a time but it means reloading every 1 hour! How can I have the Mega read this directly from excel or a txt file every time it finishes the 576 lines which was loaded in an array as in:
int TarhQuant = 576;
const uint16_t Tarh [][8] PROGMEM =
So now I need the mega when it reaches the end of the loop after 576 iterations to reload automatically new 576 lines of data?
As it can be seen I am forced to use PROGMEM and maybe if the loading can be done live then smaller chunks could be loaded avoiding PROGMEM.
thanks for your help