mirror of
https://gitlab.dit.htwk-leipzig.de/phillip.kuehne/dezibot.git
synced 2025-05-19 11:01:46 +02:00
18 lines
363 B
C++
18 lines
363 B
C++
#include "Dezibot.h"
|
|
|
|
Dezibot dezibot = Dezibot();
|
|
void setup() {
|
|
// put your setup code here, to run once:
|
|
dezibot.begin();
|
|
}
|
|
|
|
void loop() {
|
|
// put your main code here, to run repeatedly:
|
|
dezibot.display.print("Hello from\nDezibot!");
|
|
delay(5000);
|
|
dezibot.display.clear();
|
|
dezibot.display.print("Bye!");
|
|
delay(5000);
|
|
dezibot.display.clear();
|
|
}
|