#include <MD_MAX72xx.h>
#include <MD_Parola.h>
#include <SPI.h>
MD_Parola mx = MD_Parola( MD_MAX72XX::GENERIC_HW, 10, 2);
void setup() {
mx.begin();
mx.setIntensity(0);
mx.displayClear();
}
byte a[] [2]{
B00000000 , B01101100 ,
B00000000 , B10010010 ,
B00000000 , B01000100 ,
B00000000 , B00010000 ,
B00000000 , B00000000 ,
B00000000 , B00000000 ,
B00000000 , B00000000 ,
B00000000 , B00000000 ,
};
void loop() {
mx.setTextAlignment(PA_LEFT);
// mx.setInvert(false);
mx.print("h");
delay(1000);
}