mirror of
https://gitlab.dit.htwk-leipzig.de/phillip.kuehne/dezibot.git
synced 2025-05-19 02:51:47 +02:00
30 lines
650 B
C++
30 lines
650 B
C++
#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:
|
|
dezibot.multiColorLight.setLed(TOP, RED);
|
|
delay(2000);
|
|
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);
|
|
}
|