This commit is contained in:
mulbric1
2024-06-04 10:22:35 +00:00
parent 60175861db
commit 5bd1eee633
23 changed files with 1213 additions and 18 deletions

View File

@ -0,0 +1,18 @@
#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);
}