mirror of
https://gitlab.dit.htwk-leipzig.de/phillip.kuehne/dezibot.git
synced 2025-05-19 02:51:47 +02:00
15 lines
227 B
C++
15 lines
227 B
C++
#include <Dezibot.h>
|
|
Dezibot dezibot = Dezibot();
|
|
void setup() {
|
|
dezibot.begin();
|
|
}
|
|
void loop() {
|
|
for (int i=1; i<=10; i++){
|
|
dezibot.display.clear();
|
|
dezibot.display.print(i);
|
|
delay(1000);
|
|
}
|
|
|
|
}
|
|
|