Using a variable to control the LED matrix

Hello, thanks for reading my post (its my first one).

I haven't been using an arduino for that long, and I have a programming question to do with the LED matrix. Here is the code I am using (the numbers arent important, its just the format).

const byte IMAGES[][8] = {
{
B00000000,
B00000000,
B00000000,
B00000000,
B00000000,
B00000000,
B00000000,
B00000000
}};

Lets say I wanted to make a variable for row 1

int r1 = 00000000

How would I get the arduino to display this variable in row one? It would be something along the lines of:

B(r1),

but i don't know the syntax for it.

I'd appreciate it if you responded,
Thanks.

see arrays

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.