Hello,
I have an LED message display project where i'm trying to transfer a 56byte array from Processing to Arduino.
Here's a link for more info and code: http://arduino.cc/forum/index.php/topic,61583.0.html
Just wondering if someone could advise me how I should pass a 2D array into a serial string with start/end characters?
Similarly, I'm also looking for the Arduino to put the incoming serial string back into an array.
Array looks like this...
// The 56 Byte RED Image Array
int[][] Rimg = { // default array displays 'ARDUINO'
{00011000,01111100,01111100,01000010,00111000,01000010,00011000}, // [0] Entire Row 1
{00100100,00000000,00100010,01000010,00010000,01100010,00100100}, // [1] Entire Row 2
{01000010,01000010,00100010,01000010,00010000,01010010,01000010}, // [2] Entire Row 3
{01111110,01111100,00100010,01000010,00010000,01001010,01000010}, // [3] Entire Row 4
{01000010,01001000,00100010,01000010,00010000,01000110,01000010}, // [4] Entire Row 5
{01000010,01000100,00100100,01000010,00010000,01000010,00100100}, // [5] Entire Row 6
{01000010,01000010,01111000,00111100,00111000,01000010,00011000}, // [6] Entire Row 7
{00000000,00000000,00000000,00000000,00000000,00000000,00000000} // [7] Entire Row 8
};
Could anyone help me out please? ![]()