added example sketches

This commit is contained in:
Hans Haupt
2024-06-14 08:27:34 +02:00
parent dbec7278f3
commit a0e6661b16
18 changed files with 186 additions and 65 deletions

View File

@ -0,0 +1,34 @@
#include "Dezibot.h"
Dezibot dezibot = Dezibot();
void setup() {
// put your setup code here, to run once:
dezibot.begin();
}
void loop() {
// put your main code here, to run repeatedly:
if(dezibot.motion.detection.isShaken()){
dezibot.multiColorLight.setLed(TOP, YELLOW);
delay(2000);
dezibot.multiColorLight.setLed(TOP, GREEN);
delay(2000);
dezibot.multiColorLight.turnOffLed();
delay(1000);
for(int i=0; i<3; i++){
dezibot.multiColorLight.setLed(TOP, GREEN);
delay(500);
dezibot.multiColorLight.turnOffLed();
delay(500);
}
dezibot.multiColorLight.setLed(TOP, YELLOW);
delay(2000);
}
else{
dezibot.multiColorLight.setLed(TOP, RED);
}
}