// Moving points on LED-matrix
#include "LedControl.h"
#define CLK_PIN 13
#define DATA_PIN 11
#define CS_PIN 10
#define NUM_DEVICES 1
LedControl m = LedControl(DATA_PIN, CLK_PIN, CS_PIN, NUM_DEVICES);
int m_addr = 0;
int rows = 8;
int columns = 8;
int start = 0;
int i,j;
void setup() {
// Init LED-matrix
m.shutdown(m_addr, false);
m.setIntensity(m_addr, 8);
delay(1000);
}
void loop() {
}