Dezibot 4
Loading...
Searching...
No Matches
basic.ino
Go to the documentation of this file.
1#include "Dezibot.h"
2
3Dezibot dezibot = Dezibot();
4void setup() {
5 // put your setup code here, to run once:
6 dezibot.begin();
7}
8
9void 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}