Reference Language (extended) | Libraries | Comparison | Board
Writes an angle to the servo, moving the shaft to that orientation.
servo.write(angle)
servo: a variable of type Servo
angle: the angle to write to the servo, from 0 to 180 degrees
#include <Servo.h> Servo myservo; void setup() { myservo.attach(9); myservo.write(90); } void loop() {}
Corrections, suggestions, and new documentation should be posted to the Forum.
The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.