mirror of
https://gitlab.dit.htwk-leipzig.de/phillip.kuehne/dezibot.git
synced 2025-05-19 19:11:48 +02:00
19 lines
280 B
C++
19 lines
280 B
C++
#include <Dezibot.h>
|
|
|
|
Dezibot dezibot = Dezibot();
|
|
void setup() {
|
|
dezibot.begin();
|
|
}
|
|
|
|
void loop() {
|
|
dezibot.motion.move();
|
|
delay(1000);
|
|
dezibot.motion.rotateAntiClockwise();
|
|
delay(1000);
|
|
dezibot.motion.rotateClockwise();
|
|
delay(1000);
|
|
dezibot.motion.stop();
|
|
delay(1000);
|
|
}
|
|
|