mirror of
https://gitlab.dit.htwk-leipzig.de/phillip.kuehne/dezibot.git
synced 2025-05-20 19:41:47 +02:00
18 lines
311 B
C++
18 lines
311 B
C++
#include "Dezibot.h"
|
|
|
|
Dezibot dezibot = Dezibot();
|
|
const int centeredThreshold = 50 ;
|
|
|
|
void setup() {
|
|
// put your setup code here, to run once:
|
|
dezibot.begin();
|
|
//Serial.begin(115200);
|
|
dezibot.infraredLight.bottom.turnOn();
|
|
dezibot.infraredLight.front.turnOn();
|
|
}
|
|
|
|
void loop() {
|
|
|
|
//delay(100);
|
|
}
|