I tried controlling my johnny 5 with a botboarduino, soon found that it wasn’t possible to use the Servo lib with 17 servos (I have a pan/tilt modded head +1 servo).
So maybe the SSC-32 would be the right replacement… can I:
- hold the position of 17 servos
- supply 6v 6a to power the whole pcb (1 input for logic and all devices)
- add an additional ultrasonic range finder through the SSC
I just want to be 100% sure before I make another purchase, any help is appreciated. Also if I am wrong that I cannot control 17 servos with the botboarduino, let me know. I tried using the SoftwareServo lib (playground.arduino.cc/ComponentLib/servo) which claims it can control 20 servos but when i do – not all my servos are holding position. My sample code is very simple, I’m not at my house but this is really close pseudo code:
#include <SoftwareServo.h>
SoftwareServo servo(1-17)
void setup()
{
Servo(1-17).attach(pin);
Servo(1-17).write(90);
}
void loop()
{
SoftwareServo::refresh();
}