I've been trying to work with a 2d array as mentioned 26 rows and 8 columns each. But the same error msg is poping up at compilation. What should I do?
Posting the code would help. Also, keep in mind that the official Arduino forums (at https://forum.arduino.cc/) has many more active Arduino users than here.
Exactly I tried the forum previously for another solution, I don't like it there.
However, I've attached the main part of the program and as for the array declaration and initialization I'm pretty sure there's no problem except if there's too many array elements to hold .
I've tried initializing the 2d array both globally and in a separate library file, the same results keep coming up.
I've tried initializing them both globally and in a separately created library in the following format:
byte alphabet [26] [8]= {{B00001100,....,8th},{},........,{},....{26th}};
Ex
Exactly I tried the forum previously for another solution, I don't like it there.
However, I've attached the main part of the program and as for the array declaration and initialization I'm pretty sure there's no problem except if there's too many array elements to hold .
I've tried initializing the 2d array both globally and in a separate library file, the same results keep coming up.