#include <Servo.h>
#define SERVH_PIN 5
#define SERVV_PIN 6
Servo servoH;
Servo servoV;
void setup() {
// put your setup code here, to run once:
servoH.attach(SERVH_PIN);
servoV.attach(SERVV_PIN);
}
void loop() {
// put your main code here, to run repeatedly:
}