Sale!

ES08MAII Mini Metal Gear 13g Analog Servo 1.6KG 0.12sec COM31 ,R24

$ 94.25

DescriptionThe ES08MAII Mini Metal Gear 13g Analog Servo 1.6KG 0.12sec ES08MA is an ideal servo for 250, 450 class helicopter and foam airplanes with long servo arm for 3D flight.Features:Operating voltage: 4.8-6VSTD direction: Counter clockwise / pulse traveling 1500 to 1900useeStall torque (4.8V): 1.6kgf.cm (21.0 oz.in)Operating speed (4.8V): 0.12sec/60°at no loadStall torque (6V): 2.0kgf.cm (28.0 oz.in)Operating speed (6V): 0.10sec/60°at no loadGear material: MetalGetting started with the ES08MAII Mini Metal Gear 13g Analog Servo 1.6KG 0.12sec This tutorial will guide you into using analog servo by opening the gate and closing after certain amount of time(for us, it is 1 sec to open and shut the gate).How servo works:The circuit board in an analog servo receives a signal form the receiver and then outputs a power signal to the servo motor. It work on 50Hz frequency and for creating the movement the servo arm, the controller apply full voltage to the servo motor.Hardware required Arduino UnoAnalog servoJumpersConnecting the HardwareRespect the pin connections as follow:servoArduino Uno YellowD3BlackGNDRedVcc Uploading the code #include<Servo.h>Servo Myservo;int pos;void setup(){Myservo.attach(3);Serial.begin(9600);}void loop(){for(pos=0;pos<=90;pos =90){Myservo.write(pos);Serial.print(“FOWARD: “);Serial.println(pos);delay(900);}delay(1000);for(pos=90;pos>=0;pos-=90){Myservo.write(pos);Serial.print(“REVERSE: “);Serial.println(pos);delay(900);}delay(1000);} ResultsOpen the serial monitor to servo turn between 0 and 90 degrees to open and shut the gate.Refer to this codes, you can build your own; once you reach at the gate it will be opened for your and after you left it will close the gate automatically.