Which Servo's

Discuss development of drivers for external hardware and components, such as LCD screens, sensors, motor drivers, etc.
Target audience: Users and developers of drivers.
Post Reply
User avatar
roland_vs
Posts: 89
Joined: Tue Dec 08, 2015 8:28 pm
Location: Netherlands
Contact:

Which Servo's

Post by roland_vs » Mon Sep 25, 2017 4:07 pm

Hello,

Micropython supports the control of servo's.
Are there any particular type/brand of servo's that work well with the py-board?

Regards,

Roland

User avatar
dhylands
Posts: 3821
Joined: Mon Jan 06, 2014 6:08 pm
Location: Peachland, BC, Canada
Contact:

Re: Which Servo's

Post by dhylands » Mon Sep 25, 2017 5:19 pm

All RC style hobby servos should work. They all nominally expect a pulse of 1-2 msec sent approx 50-60Hz.

There are some high end digital servos that might not work.

And of course, the servo module wasn't designed to control servos like the ones used in CNC machines (low-end machines typically use steppers and higher end machines use servos).

trazee11
Posts: 2
Joined: Tue Oct 10, 2017 4:22 pm

Re: Which Servo's

Post by trazee11 » Thu Oct 12, 2017 12:42 am

To complement the previous answer, if you aren't sure what specific type you should get, you can have companies that do customization regarding servos (this one for example: http://www.powerjackmotion.com/product- ... tor-range/) to meet your requirements.

User avatar
dhylands
Posts: 3821
Joined: Mon Jan 06, 2014 6:08 pm
Location: Peachland, BC, Canada
Contact:

Re: Which Servo's

Post by dhylands » Thu Oct 12, 2017 1:49 am

trazee11 wrote:To complement the previous answer, if you aren't sure what specific type you should get, you can have companies that do customization regarding servos (this one for example: http://www.powerjackmotion.com/product- ... tor-range/) to meet your requirements.
Those are the types of Servos that are typically used in CNC machines, which are significantly different from the RC style servos that the MicroPython Servo module supports.

trazee11
Posts: 2
Joined: Tue Oct 10, 2017 4:22 pm

Re: Which Servo's

Post by trazee11 » Thu Oct 12, 2017 4:52 am

[quote="dhylands"][quote="trazee11"]To complement the previous answer, if you aren't sure what specific type you should get, you can have companies that do customization regarding servos (this one for example: http://www.powerjackmotion.com/product- ... tor-range/) to meet your requirements.[/quote]
Those are the types of Servos that are typically used in CNC machines, which are significantly different from the RC style servos that the MicroPython Servo module supports.[/quote]

Thanks for that, I just thought their custom-made OEM products can help. Anyway, I reviewed the sight and saw the servos' standard applications are for CNC, industrial applications, and etc.

User avatar
mcauser
Posts: 507
Joined: Mon Jun 15, 2015 8:03 am

Re: Which Servo's

Post by mcauser » Thu Oct 12, 2017 5:44 am

I've used two entry level TowerPro servos, SG90 and MG995.
They are not the fastest, strongest or most accurate, but they are easy to find and quite cheap.

You can find a SG90 for around $1 each. Very small and with plastic gears.
https://www.aliexpress.com/item/Free-Sh ... 64605.html
https://servodatabase.com/servo/towerpro/sg90

The MG995 servos are around $4 each. Bigger and with metal gears.
https://www.aliexpress.com/item/Free-sh ... 08918.html
https://servodatabase.com/servo/towerpro/mg995

If you are driving a lot of servos, an I2C PCA9685 module will save you some pins and give you an external power source to drive them.
https://www.aliexpress.com/item/16-Chan ... 55850.html
https://www.adafruit.com/product/815

Post Reply