#include "LedControl.h" #define DIN 12 #define CLK 11 #define L 10 LedControl ld=LedControl(DIN,CLK,L,1); int dt=500; void setup() { ld.shutdown(0,false); ld.setIntensity(0,2); ld.clearDisplay(0); } void loop() { ld.setChar(0,7,'a',false); ld.setRow(0,6,0B0000101); ld.setChar(0,5,'d',false); ld.setRow(0,4,0B0011100); ld.setRow(0,3,B0000100); ld.setChar(0,2,'n',false); ld.setChar(0,1,'o',false); delay(dt); ld.clearDisplay(0); delay(dt); }