Wrong signal generated by using Servo library[Solved, but keep discussion]

That's what he means, I believe. Also, you should bracket your code using the # icon,

void setup()
{
  Serial.begin(9600);
  for(int ServoNum = 0; ServoNum <= 11; ServoNum++)
  {
    myservo[ServoNum].attach(SERVO_TO_PIN(ServoNum));
  }
  Serial.println("Completed Setup");
}