Names of the examples drawn straight

This commit is contained in:
Prof.J.Wagner
2024-05-14 10:04:37 +02:00
parent b1811bc8a7
commit 292e57032b
3 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,19 @@
#include <Dezibot.h>
Dezibot dezibot = Dezibot();
const uint8_t MYFOO = 10;
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);
}