mirror of
https://gitlab.dit.htwk-leipzig.de/phillip.kuehne/dezibot.git
synced 2025-05-19 11:01:46 +02:00
17 lines
343 B
C++
17 lines
343 B
C++
#include <Dezibot.h>
|
|
|
|
Dezibot dezibot = Dezibot();
|
|
const uint8_t MYFOO = 10;
|
|
void setup() {
|
|
dezibot.begin();
|
|
|
|
}
|
|
|
|
void loop() {
|
|
dezibot.multiColorLight.setLed(TOP_LEFT,0x000000FF);
|
|
dezibot.multiColorLight.setLed(TOP_RIGHT,dezibot.multiColorLight.color(0,100,0));
|
|
dezibot.multiColorLight.blink(10,0x00FF0000,BOTTOM,500);
|
|
|
|
delay(1000);
|
|
}
|