View Single Post
  #3   Spotlight this post!  
Unread 05-02-2016, 14:08
VrewDaive VrewDaive is offline
Registered User
FRC #4284
 
Join Date: Sep 2015
Location: Cincinnati
Posts: 21
VrewDaive is an unknown quantity at this point
Re: teleop drive changing help

Its not working.... I put it in the code and get all kinds of errors, could you put it in code? what i have now is this
Code:
    public void operatorControl() {
        if(moveStick.getRawButton(0))
        {
            frontCatcher.drive(1,0);
}
        

if(moveStick.getRawButton(1))
{
   backCatcher.drive(1,0);
}
    }
Reply With Quote