top of page

How to Make it: SnakeRobot

This is a 16 degrees of freedom snake-like robot. It primarily uses servo motors for its actuation. Here are the list of parts

  • Servo motors (16 Kg-cm, metal gear, dual shaft)

  • Motor brackets

  • Arduino Uno

  • Adafruit 16 channel 12 bit I2C servo shield

 

 

Mechanically the design is very simple. The servo motors are connected back to back in series using the motor brackets.

sr 1.1

sr 1.2

In fig. sr 1.1 the mechanical parts (servo, horns, brackets) needed can be seen. In fig. sr 1.2 it can be seen how the motors are connected using the motor brackets. The robot has a total of 16 servo motors. Two motors each can be grouped into a single module thus making a total of 8 modules that form the robot. Fig. sr 1.2 shows one of those modules. As it can be seen the two motors are connected perpendicular to each other using the brackets i.e the output axis of the two motors are at 90 degrees offset to each other. This is particularly important as this enables the robot to move in 3D. Imagine if the axis of all the motors are parallel to each other then the robot can only move in 2D. Motions such as side rolling won't be possible in that case. Next fig. (sr 1.3) shows how each module is connected to another module. Here also they are at 90 degrees offset to each other.  

sr 1.3

Next to control the robot I used arduino UNO with a servo shield. Arduino communicates to shield via I2C protocol. It's actually the shield that's generating pulses to control the servos, arduino is just specifying which servo to rotate by how much angle. Arduino UNO without the shield can control 12 servos at maximum. The shield can control 16 motors. Instead of this one can also use arduino mega directly as it can control 48 servos. The servos I use consume a lot of power so I used a 7.4 v, 1550 mAh, 20c Li-po battery. I connected all the servos in parallel so the total current drawn from the battery can be quite high. So I used the 20c rated Li-po battery. It can provide upto 31 Amps (1550 mAh x 20c = 31000 mA). 

 

Finally to hold the arduino & the shield I designed & 3D printed a case. 

bottom of page