moved example ino in separate directory

This commit is contained in:
hhaupt 2024-05-01 14:26:26 +02:00
parent 1596b3883c
commit 6ec94ae0dc

View File

@ -0,0 +1,16 @@
#include <Dezibot.h>
Dezibot dezibot = Dezibot();
void setup() {
dezibot.begin();
//dezibot.infraredLight.front.turnOn();
//dezibot.infraredLight.bottom.turnOn();
}
void loop() {
dezibot.infraredLight.bottom.turnOn();
delay(1000);
dezibot.infraredLight.bottom.turnOff();
delay(1000);
}