Dezibot 4
Ampel1.ino
Go to the documentation of this file.
1 #include "Dezibot.h"
2 
3 Dezibot dezibot = Dezibot();
4 void setup() {
5  // put your setup code here, to run once:
6  dezibot.begin();
7 }
8 
9 void loop() {
10  // put your main code here, to run repeatedly:
11  dezibot.multiColorLight.setLed(TOP, RED);
12  delay(2000);
13  dezibot.multiColorLight.setLed(TOP, YELLOW);
14  delay(2000);
15  dezibot.multiColorLight.setLed(TOP, GREEN);
16  delay(2000);
17  dezibot.multiColorLight.setLed(TOP, YELLOW);
18  delay(2000);
19 }