#include <MD_MAX72xx.h>
const int8_t CS_PIN = D10;
const uint8_t NB_MAX7219=4; // nombre d'afficheur(s) juxtaposé(s)
MD_MAX72XX afficheurs = MD_MAX72XX(MD_MAX72XX::PAROLA_HW, CS_PIN, NB_MAX7219);
void setup()
{
afficheurs.begin();
afficheurs.setPoint(1,2,true);
afficheurs.setChar(16,'L');
afficheurs.control(M);
afficheurs.update();
}
void loop() {
// put your main code here, to run repeatedly:
afficheurs.transform(MD_MAX72XX::TSR);
afficheurs.update();
delay(100); // this speeds up the simulation
}