View Single Post
  #15   Spotlight this post!  
Unread 30-03-2014, 10:35
JavaNoNothing14 JavaNoNothing14 is offline
Registered User
FRC #2681
Team Role: Programmer
 
Join Date: Feb 2014
Rookie Year: 2012
Location: Brooklyn, NY
Posts: 12
JavaNoNothing14 is an unknown quantity at this point
Re: 8 volts over talons

I tried opening a new project

Code:
public class WhyYouNoWork extends SimpleRobot{

        Joystick js = new Joystick(1);
        Talon shooter = new Talon(1);

public void robotInit(){

}

public void autonomous(){

}

public void operatorControl(){
   while(isOperatorControl() && isEnabled()){
        if (js.getRawButton(11)){
            shooter.set(1.0);
        }
   }
}

Last edited by JavaNoNothing14 : 30-03-2014 at 10:58.