UPM library for the PCA9685 based Adafruit 16-channel servo shield. When 3 or more GWS servos attached results unpredictable. Adafruit do recommend a capacitor be installed on the board which should alleviate the issue. Sizing depends on servos and count.
for (;;)
{
cout << "Setting all to 0" << endl;
for (n = 0; n < 16; n++)
usleep(1000000);
cout << "Setting all to 45" << endl;
for (n = 0; n < 16; n++)
usleep(1000000);
cout << "Setting all to 90" << endl;
for (n = 0; n < 16; n++)
usleep(1000000);
cout << "Setting all to 135" << endl;
for (n = 0; n < 16; n++)
servos->
servo(n, 1, 135);
usleep(1000000);
cout << "Setting all to 180" << endl;
for (n = 0; n < 16; n++)
servos->
servo(n, 1, 160);
usleep(2000000);
}