#include /*************************************************** /MINDS-i Calibration. mymindsi.com / /Servo Calibration / /This Servo Calibration code is used to test /and adjust your servo. Because each servo /varies, this calibration is necessary before applying /it in your code to avoid malfunctions. / /To learn more about this servo visit: /http://www.hitecrcd.com/products/analog/standard-sport/hs-485hb.html / / /***************************************************/ Servo myservo; void setup() { myservo.attach(5); //set a pin for a servo/ESC to use } void loop() { myservo.write (90); //set the output to 90 degrees (center) }