Arduino multi-servo remote control through serial with Processing

ArduinoLogo.JPG

RemoteServo.pde (1887Bytes)
RemoteServoTest.pde (1972Bytes)

This is based on http://www.arduino.cc/playground/Learning/SingleServoExample but extended to multiple servos and with a matching Processing class.

To try this out:

  1. Edit the number of servos and the pin numbers in RemoteServo.pde (read the comments) and upload to Arduino
  2. Edit the number of servos and the Arduino serial port index in RemoteServoTest.pde.
  3. Check the range of motion for the servos in the test (START_POSITION and END_POSITION) is OK for your servos
  4. Run RemoteServoTest in Processing

The baud rate is set to 115200 in both programs, if this doesn't work for you try lowering it in both programs.

Cool, glad it worked for

Cool, glad it worked for you. If you need to speed it up you could send the servo index and position as bytes rather than ASCII and skip the “p/m/g” separators, they are only that way as per the original SingleServoExample to make it easy to test interactively from the serial terminal.

Great work!! Much appriciated!!

I had been search better solutions for servo control for Arduino. I have been modified the SAMPLE from arduino but my quadbot seems like got STROKE attack. It just not working right. I am gonna try this tonight and thanks again!

You’re welcome. One thing I

You’re welcome. One thing I found when using lots of servos is that they drain a lot of current when they’re all working at once, and if your power supply and/or battery isn’t up to it and the supply voltage on the servos sags too much the controllers in the servos will go crazy or stop working, then the voltage goes up with no load and they start working again, etc. So it will look like it’s your software that’s messing up, but really it’s the hardware.

Can someone explain to me

Can someone explain to me the line:

  pinNumber = pinNumber * 10 + (ch -‘0’);

in the RemoteServo.pde code?

that is kind of a weird construction - I dont get the "(ch -‘0’) and I dont get why pinNumber gets multiplied by 10.

Any help out there?

    owen

See above reply. :slight_smile:

See above reply. :slight_smile:

Tthis is a tiny

This is a tiny “interpreter” that lets you send decimal numbers through the serial port. Every time it gets a new digit it multiplies the previous value by 10 and adds the value of the new digit.

The (ch-‘0’) part subtracts the ASCII value for zero from the digit so that ‘0’ will be converted to integer 0 and ‘9’ will be integer 9, and so on.

For example, when it receives the character sequence ‘1’ ‘2’ it will end up with (1*10 + 2 = 12) in the pin number.