Index
 
  Reference for Wiring 1.0 (ALPHA) 0020+. 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.
Name  

write()

   
Examples  
#include <Servo.h> 
 
Servo myservo; 
 
void setup() { 
  myservo.attach(2)  // attaches a servo connected to pin 2 
} 
 
void loop() { 
  myservo.write(90);  // sets the servo position at 90 degrees 
} 
 


#include <Servo.h> 
 
Servo myservo; 
 
void setup() { 
  myservo.attach(3) // attaches a servo connected to pin 3 
} 
 
void loop() { 
  myservo.write(180);  // sets the servo position at 180 degrees 
} 
 

Description   The write(degrees) method sets the position of the servo to the degrees specified. Servos can be positioned between 0 and 180 degrees.
   
Syntax  
servo.write(degrees)
   
Parameters  
servo   Any variable of type Servo

degrees   Any integer value between 0 and 180

   
Returns   None
   
Usage   Application