Case 09: The Crawl Robot
Contents
11. Case 09: The Crawl Robot#
11.1. Purpose#
Make a crawl robot with NezhaA Inventor’s Kit.
11.2. Purchse#
11.3. Materials Required#
11.4. Assembly Steps#
11.5. Hardware Connections#
Connect the motor to M1 port on Nezha-A master box.
11.6. Programming#
11.6.1. Prepare the programming#
Steps for preparation please refer to: Arduino 3 in 1 Breakout Board.
11.6.2. Sample Code:#
// Language ArduinoC
#include <NezhaA.h>
NezhaA nezhaA; //Create an instance of Nezha category
void setup() {
nezhaA.begin(); //Initiliaze the buzzer, motor, servo and light
nezhaA.setMotorSpeed(M1, 100); // Set the speed of the motor connecting to M1 at 100%
}
void loop() {
}
11.6.3. Result#
After powering on, the robot crawls forward.