Using a Arduino Pro Mini to power more than 2 servos

arduinoprogrammingservo

I don't know very much about Arduino, but from some basic research I have read that the Arduino Pro Mini can only support two servo motors.

I am trying to create a set of reaction wheels using hard drives, brushless motor controllers and an Arduino Pro Mini. (I can get a different model of Arduino, but that's what I had lying around.)

Since a set of reaction wheels requires a minimum of three hard drives to work, I need to find a way to be able to control another servo using my Mini.

Is it possible to control more than two servos (with precision) when using an Arduino Pro Mini?

If so, how?

If not, should I look into a different model of Arduino? Since I value small size, will an Arduino Micro work?

Best Answer

That's not correct. There was a limit in early versions of the Servo library, but that's been removed. The Pro Mini uses the same ATMega 328p chip as a full-size arduino, so the only limitation is the number of PWM pins that are broken out. There are 6 on a Pro Mini, and the library supports up to 12 on a non-mega.

Also - note that the arduino micro is based on the ATmega32u4 chip, which means it'll behave like a Leonardo, not a standard Uno. It has 7 PWM pins.