hi
i am using the following code to display on the display.
#include <Adafruit_GFX.h> // Core graphics library
#include <RGBmatrixPanel.h> // Hardware-specific library
#define CLK 8 // MUST be on PORTB!
#define LAT 13
#define OE 9
#define A 10
#define B 11
#define C 12
RGBmatrixPanel matrix(A, B, C, CLK, LAT, OE, false);
void setup() {
matrix.begin();
// draw a pixel in solid white
matrix.drawPixel(0, 0, matrix.Color333(7, 0, 7));
delay(500);
}
void loop() {
// do nothing
}
but when i upload this instead of printing the pixel on 0,0 its printing something else
plz help