I am working on a robotic project, that involves controlling the position of a large robotic arm. The suggestion was to use a double PID loop, and I am wondering what is involved in this.
As it was described to me, the first PID loop should deal with the speed of the arm (as it is expected to be heavy and long and thus "harder" to control) and then a second to control the position of the arm and feed its value into the first PID.
I have used PIDs before, by following the table provided on wikipedia to calibrate the loop. (AKA: Do not assume that I will be able to use a complex method to calibrate the loop)
So I am looking for some good sources to help in how to calibrate the loops, and also a little bit of information (pseudocode) on how to get this working, plus if this is even a good idea.