try this:
change
Code:
// you may need to reverse this based on your vertical servo installation
//incrementV = verticalPosition - verticalDestination;
incrementV = verticalDestination - verticalPosition;
to
Code:
// you may need to reverse this based on your vertical servo installation
incrementV = verticalPosition - verticalDestination;
//incrementV = verticalDestination - verticalPosition;