Dezibot 4
Loading...
Searching...
No Matches
motion_minimum.ino
Go to the documentation of this file.
1#include <Dezibot.h>
2
3Dezibot dezibot = Dezibot();
4void setup() {
5 dezibot.begin();
6}
7
8void loop() {
9dezibot.motion.move();
10delay(1000);
11dezibot.motion.rotateAntiClockwise();
12delay(1000);
13dezibot.motion.rotateClockwise();
14delay(1000);
15dezibot.motion.stop();
16delay(1000);
17}
18