#include <LedControl.h>
LedControl lc=LedControl (2, 1, 0, 1);
void setup() {
lc.shutdown(0,false);
lc.setIntensity(0,8);
lc.clearDisplay(0);
}
void loop()
{
// Array für die 8 Reihen
byte Zeichen[8] =
{
B01111101, // 1. Reihe
B01100101, // 2. Reihe
B01100101, // 3. Reihe
B01100101, // 4. Reihe
B11111111, // 5. Reihe
B00000000, // 6. Reihe
B00000000, // 7. Reihe
B00000000 // 8. Reihe
};
// Matrix anzeigen
for (int i = 0; i < 8; i ++)
{
lc.setRow(0, i, Zeichen[i]);
}
}