Error with arduino Uno?

Hi,
Your code with Servo.h in the include compiled for Mega

#include <Servo.h>

Servo topservo;

Servo bottomservo;



void setup() {
topservo.attach(8);
bottomservo.attach(9);
}



void loop() {
bottomservo.write(0);
topservo.write(50);
delay(1000);
topservo.write(0);
bottomservo.write(110);
delay(1000);
}

Tom... :slight_smile: