
Programming a Hexapod - NXT-Ant
I built an NXT Hexapod six months or so ago which used NXT motors, one each for forward/reverse placement of legs on each side of the body and a third drove a network of cams to lift the legs. It worked in principle but was very slow due to the cam load. Some of this was contributed by the Technic shock absorbers which tried to keep the the foot on the ground resulting in a complex gear arrangement need to supply a large amount of axle twisting torque.
Now that I own the Mindsensor 8 Channel Servo Controller I decided last night to go back to the basic Hexapod design I developed previously but replace the cams by giving each leg a Servo Motor to lift it from the ground and back again. The overall design is pretty close to my original accepting the drive train is now simplified, with no heavy loading on motors and the complex cam system was no longer needed.

The third NXT motor 'C' opens and closes the jaws, with a seventh Servo to lower and lift the jaws. The eighth Servo just moves the tail from left-to-right for aesthetics only.
So far I have NXT-Ant shaking it's hips, but not walking. My query is is they a simple efficient method to program a Hexapods gate.
LEGS:
1 - 2
3 - 4
5 - 6
As a starting point to move
FORWARD, I lift legs 1, 4, 5 and move them forward using NXT motor 'A', and then I lower them. Next I lift legs 2, 3 6 and move them forward using NXT motor 'B', and then I lower them. This series of movements propels the Bot forward. Likewise to
REVERSE, I follow the same series, accepting the legs are moved backwards instead. And to
TURN, I move one side
FORWARD and then the other side
BACKWARDS.
To enable proper walking, is there a programming algorithm/guide that I should use to ensure speed and efficiency of movement?