Thanks Tom,
I checked the board and it does have a continuous line. I also tested the two suggestions you gave me. Neither one fixed the board. While I was working on it, I did learn one thing. The tail servo can work on it's own the mouth servo does not work on it's own, but if the tail servo and mouth servo are moved at the same time, it will work. This code does work as intended.
void loop() {
// put your main code here, to run repeatedly:
mouthServo.write(80);
tailServo.write(80);
delay(500);
mouthServo.write(40);
tailServo.write(100);
delay(500);
}
If I take out the tail segment tailServo it will no longer work and you will here the servo struggle to move. What would cause that too happen?