Dezibot 4
Loading...
Searching...
No Matches
zaehlen.ino
Go to the documentation of this file.
1#include <Dezibot.h>
2Dezibot dezibot = Dezibot();
3void setup() {
4 dezibot.begin();
5}
6void 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