#Max7219
1 post tagged “Max7219”
1 post tagged “Max7219”
#include <LedControl.h>LedControl lc=LedControl(12,11,10,1); // pin 12 is connected to the MAX7219 pin 1 // pin 11 is connected to the CLK pin 13 // pin 10 is connected to LOAD pin 12 // 1 as we are only using 1 MAX7219
void setup(){ lc.shutdown(0,false); lc.setIntensity(0,8); lc.clearDisplay(0); }