// #include <Arduino.h>

// #include "ServoEasing.hpp"


// ServoEasing ArmLeftCrew;

// int startALC = 0;
// int startARC = 0;
// int HLRC = 0;
// int HHLC = 0;
// int BLRC = 0;
// int BHLC = 0;



// void setup() {
//     ArmLeftCrew.attach(9, 90);
//     delay(500);
// }

// void loop() {
//     ArmLeftCrew.easeTo(135 ,40);
//     delay(500);
//     ArmLeftCrew.easeTo(75 ,40);
//     delay(500);

// }

#include <Servo.h>

Servo Servo1;

const int pot1 = A0;

void setup() {
  Servo1.attach(9);
  Servo1.write(90);

}