include IR into release

This commit is contained in:
Prof.J.Wagner
2024-06-06 15:00:37 +02:00
6 changed files with 162 additions and 2 deletions

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);
}