View Single Post
  #5   Spotlight this post!  
Unread 11-02-2014, 18:11
graham.robots graham.robots is offline
Registered User
FRC #4024
 
Join Date: Feb 2013
Location: Florida
Posts: 5
graham.robots is an unknown quantity at this point
Re: How to use Axis Camera Servos in Java

//Declaration
Servo cameray = new Servo(7);

//Implementation
if (aButton.get() && !yButton.get())
{
//Tried both of these
//cameray.set(1);
cameray.setAngle(180);
}
else
{
//cameray.set(0);
cameray.setAngle(90);
}
Reply With Quote