#include <Servo.h>
//---------------------Equipment Variables---------------------
//----------Servomotors------------
Servo servo_dx;
int servo_dx_pin=9;
void setup() {
servo_dx.attach(servo_dx_pin);
//Initial Position Setup (at the power-up)
servo_dx.write(0);
}
void loop() {
// put your main code here, to run repeatedly:
}
void servo_test(){
}