View Single Post
  #1   Spotlight this post!  
Unread 16-02-2011, 17:18
Robby Unruh's Avatar
Robby Unruh Robby Unruh is offline
*insert random dial-up tone here*
FRC #3266 (Robots R Us)
Team Role: Coach
 
Join Date: Feb 2010
Rookie Year: 2010
Location: Eaton, OH
Posts: 338
Robby Unruh will become famous soon enough
Robot Arm Victor Motor

Our team's mechanical engineer insist's our arm not working is a program error. I don't think so, so I just want to double check here.

Code:
Victor arm;

public void robotMain() {
    arm = new Victor(10);
}

public void operatorControl() {
    while(isOperatorControl()) {
        getWatchdog().setEnabled(true);
        getWatchdog().feed();

        if(joy.getRawButton(10)) {
            arm.set(-0.2); // arm goes down.
        } else if(joy.getRawButton(11)) {
            arm.set(0.2); // arm goes up.
        }
    }
}
__________________
[Robots R Us #3266]
2015: Georgia Southern Classic (Winners / Thanks 1319 & 1648!), Queen City
2014: Crossroads, Queen City
2013: Buckeye, Queen City, Crossroads
2012: Buckeye, Queen City

2011: Buckeye
2010: Buckeye
Reply With Quote