Dezibot 4
basic.ino
Go to the documentation of this file.
1 #include "Dezibot.h"
2 
3 Dezibot dezibot = Dezibot();
4 void setup() {
5  // put your setup code here, to run once:
6  dezibot.begin();
7 }
8 
9 void loop() {
10  // put your main code here, to run repeatedly:
11  dezibot.display.print("Hello from\nDezibot!");
12  delay(5000);
13  dezibot.display.clear();
14  dezibot.display.print("Bye!");
15  delay(5000);
16  dezibot.display.clear();
17 }