Converting a micro servo to continuous rotation

servo01

Say you want to build a small robot, but you soon discover that DC motors move too fast and geared DC motors are too expensive. Then you hear about servos. Servos are basically geared DC motors, and microservos seem just the right size for your robot.

So you attach a couple to your wheels and . . . the wheels move about half a turn and stop.

What gives? Your microservos probably have a fixed sweep angle. They need to be ‘converted’ to continuous rotation. This blog entry will describe how to do that. I’ve tried this procedure on several brands, and they seem to be the same.

You’ll need:

*a tiny screw driver

*a 1/16″ drill bit

*wire clippers

*glue

*prying tool

*needle-nosed pliers

*emery board

*Arduino.

In each of the following steps, I focus on doing and not explaining. Explaining is good too, but perhaps another blog entry, another day.

It only takes a few minutes to convert a micro servo, but I recommend reading all the steps before starting.


1. Open the servo.

Use your tiny screwdriver to unscrew the tiny bolts from the bottom of the servo. You don’t have to pull the bolts all the way out.

servo02

You just need to pull the bolts out far enough to pull off the top of the servo, which you will set aside for now.

servo03

2. Remove the gears.

GENTLY pry the gears off the servo.

servo04

Keep track of the order and position so you can put them back the same way later.

servo05

3. Connect the servo to an Arduino.

The red line goes to the 5v header hole, the brown (or black) to the ground header. The remaining line (often yellow or white) goes to pin 10.

servo06

4. Program the Arduino to center the servo at 90 degrees.

Copy and paste this code into your Arduino IDE:

//servo 90

#include<Servo.h>

Servo myservo;

void setup(){
myservo.attach(10);
}

void loop(){
myservo.write(90);
}

Send it over to the Arduino. BE PREPARED: The servo will start whirring!

DSCN5603

5. Center the servo.

See the potentiometer shaft?

servo08

Slowly twist it clockwise and counter-clockwise GENTLY. The motor will whir rapidly, then slow down, then speed up again. Adjust the shaft so that the motor either stops or goes as slow as possible.

servo09

6. Glue the shaft in place.

Detach the servo from the Arduino. Glue the base of the potentiometer shaft so that it will no longer be able to turn from the 90 degree position. You’ll want to keep the servo oriented so that the glue doesn’t run.

servo10

7. Remove the gear stops.

Get the big potentiometer shaft gear.

servo10a

See the little nubs on the bottom of the big gear?

servo11

Snip them off with the clippers.

servo12

To ensure that nothing remains to stick out from the gear base, you may want to use an emery board to rub the stubs of the nubs. (Sorry for the Dr. Seuss rhyming, it was unavoidable.)

servo13

servo14

8. Widen gear holes.

Again, take the big gear that goes on the potentiometer shaft. Stick the drill bit into the hole, and twist it through, widening the hole.

servo15

servo16

servo17

servo18

Obtain the other potentiometer shaft gear.

servo19

And now widen the hole for the other gear, like so:

servo20

9. Wait for the glue to dry.

sleepy

10. Test the servo.

Reconnect the servo to the Arduino as before. Try different angle values in the myservo.write() command: 90, 0, and 180. The servo should stop or move slowly, then move fast in one direction and then fast in the other.

Here, as a visual aid, is the same photo of the setup that I used before:

DSCN5603

11. Put the gears back on.

Which will be easy because you remembered to keep them in the proper order.

servo05

12. Close ‘er up.

Here’s the same picture I used in Step #2. Imagine I’m twisting the screwdriver the other way:

servo02

And this looks familiar too.

servo01

13. Repeat with the other servo.

Because there are two servos per robot, one for the left wheel and one for the right wheel:

servo21

14. Congratulate yourself.

Armed with the knowledge of micro servo conversion, you can now build an army of tiny robots and conquer an entire table top in a matter of minutes. Good luck, Commander!

STAR

About engineerzero

Once and future engineer.
This entry was posted in Uncategorized and tagged , , , , , . Bookmark the permalink.

1 Response to Converting a micro servo to continuous rotation

  1. Daniel Dugan says:

    Thank you! I look forward to popping open servos.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s