Names of the examples drawn straight

This commit is contained in:
Prof.J.Wagner
2024-05-14 10:04:37 +02:00
parent b1811bc8a7
commit 292e57032b
3 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,15 @@
#include <Dezibot.h>
Dezibot dezibot = Dezibot();
void setup() {
Serial.begin(115200);
Serial.println("Started");
dezibot.begin();
Serial.println("Inited");
}
void loop() {
Serial.println(dezibot.lightDetection.getValue(DL_FRONT));
delay(1000);
}