#include <Servo.h>

Servo servo_left;
Servo servo_right;

void setup() {
  servo_left.attach(5);
  servo_right.attach(4);
}

void loop() {
  servo_left.write(90);
  servo_right.write(90);
  delay(1000);
  servo_left.write(0);
  servo_right.write(0);
  delay(1000);
  servo_left.write(180);
  servo_right.write(180);
  delay(1000);
}