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

attached()

Examples
#include "Servo.h"

Servo myservo;

void setup() {
  myservo.attach(2);  // attaches a servo connected to pin 2
}

void loop() {
  if(myservo.attached()) {
    myservo.write(90);  // position the servo angle at 90 degrees
    myservo.detach();
  }
}

Description Returns true if a servo is attached.
Syntax
servo.attached()
Parameters
servo Any variable of type Servo.
Returns boolean
Usage Application
Updated on November 01, 2009 08:41:53am PST

Creative Commons License