Reference for Wiring version 0024+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.
Class | Servo |
||||
---|---|---|---|---|---|
Name | writeMicroseconds() |
||||
Examples | #include "Servo.h" Servo myservo; void setup() { myservo.attach(2) // attaches a servo connected to pin 2 } void loop() { myservo.writeMicroseconds(544); // sets the servo position at 0 degrees } #include "Servo.h" Servo myservo; void setup() { myservo.attach(3) // attaches a servo connected to pin 3 } void loop() { myservo.writeMicroseconds(2400); // sets the servo position at 180 degrees } |
||||
Description | The writeMicroseconds(ms) method sets Sets the servo pulse width in microseconds. | ||||
Syntax | servo.writeMicroseconds(ms) |
||||
Parameters |
|
||||
Returns | None | ||||
Usage | Application |