Nie działa mi matryca. Wszystkie kabelki dobrze podłączone, napisałem dobry program i się MaxMatric w programie nie podświetla na czerwono.
#include <MaxMatrix.h>
int DIN = 7;
int CS = 6;
int CLK = 5;
int Matryc = 1;
MaxMatrix Matryca(DIN, CS, CLK, Matryc);
char E[] = {8,8,0,0,126,82,66,0,0,0,};
void setup() {
Matryca.init();
Matryca.setIntensity (15);
}
void loop() {
Matryca.writeSprite(0, 0, E);
delay(1000);
}