merge conflict #5 and #6 resolved

This commit is contained in:
Jens Wagner
2024-05-13 13:53:02 +02:00
6 changed files with 229 additions and 1 deletions

15
example/example.ino Normal file
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);
}