//https://forum.arduino.cc/t/my-8x8-dot-matrix-doesnt-work-properly/1275898
#include "LedControl.h"
LedControl dot = LedControl(9,11,10,1); // DIN, CLK CS
void setup() {
dot.shutdown(0,false);
dot.setIntensity(0,4);
dot.clearDisplay(0);
Serial.begin(9600);
while(!Serial){}
Serial.println("Serial Port");
delay(1000);
}
void loop() {
// put your main code here, to run repeatedly:
for(int i=0;i<8;i++)for(int j=i+1;j<8;j++){
dot.setRow(0,i,0x7E);
dot.setRow(0,j,0x7E);
delay(500);
dot.setRow(0,i,0x00);
dot.setRow(0,j,0x00);
}
}