#include <MD_MAX72xx.h>
const uint32_t CS_PIN = D10;
const uint8_t NB_MAX7219=4; // nombre d'afficheur(s) juxtaposé(s)
MD_MAX72XX afficheurs( MD_MAX72XX::PAROLA_HW , CS_PIN , NB_MAX7219);
void setup() {
  afficheurs.begin();
  afficheurs.setChar(31, 'Y');
  afficheurs.setChar(21, 'A');
  afficheurs.update();
}
void loop() {
  // put your main code here, to run repeatedly:
  delay(100); // this speeds up the simulation
  
}