Frage um weitere Servo einbindung

Weil es vielleicht an Informationen fehlt?

Mach den hier:

#include<Servo.h>

Servo motor1;
Servo motor2;

void setup()
{
  Serial.begin(115200);
  Serial.println(F("Start..."));
  motor1.attach(3);
  motor2.attach(4);
  for (byte b = 0; b < 90; b++)
  {
    motor1.write(b);
    motor2.write(b);
    delay(20);
  }
}

void loop()
{
}

Was passiert?
So und dann komm endlich mit Infos rum, was Du für Servos verwendest!