add basic PT Reading

This commit is contained in:
hhaupt
2024-04-26 14:58:20 +02:00
parent dbe97dc94c
commit 1d074f26d1
4 changed files with 83 additions and 54 deletions

View File

@ -7,7 +7,12 @@ Dezibot dezibot = Dezibot();
void setup() {
dezibot.begin();
Serial.begin(9600);
}
void loop() {
Serial.println("FooBarBaz");
Serial.println(dezibot.lightDetection.getValue(DL_FRONT));
delay(1000);
}