Hi,
I know it’s probably a construction error, but after checking several times I’m stuck!
When I run the code below:
#include <Rainbowduino.h>
void setup()
{
Rb.init(); //initialize Rainbowduino driver
}
unsigned int x,y;
void loop()
{
for(x=0;x<4;x++)
{
for(y=0;y<4;y++)
{
Rb.setPixelZXY(0,x,y,0x00FF00);
}
}
}
Which should set Layer 0 to green I see a very different result:
The first 2 rows are correctly lit i.e. looking from the front then the 2 rows on the right-hand side are green but layer 0 then continues on the top of the cube ! and the tow left-hand rows are green !!
What have I done - please help !
regards,
Jeff