Dezibot 4
zaehlen.ino
Go to the documentation of this file.
1 #include <Dezibot.h>
2 Dezibot dezibot = Dezibot();
3 void setup() {
4  dezibot.begin();
5 }
6 void loop() {
7  for (int i=1; i<=10; i++){
8  dezibot.display.clear();
9  dezibot.display.print(i);
10  delay(1000);
11  }
12 
13 }
14