17 lines
303 B
C++
17 lines
303 B
C++
#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);
|
|
}
|