|
|
|
![]() |
|
|||||||
|
||||||||
|
|
Thread Tools | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
CANTalon reverseOutput() doesn't work
For some reason the .reverseOutput() function doesn't do anything.
Code:
public class Robot extends IterativeRobot {
CANTalon tal;
@Override
public void robotInit()
{
RobotClock.init(true);
tal = new CANTalon(2);
//switching this to true doesn't do anything observable
tal.reverseOutput(false);
}
@Override
public void teleopPeriodic() {
tal.set(.25);
}
}
|
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|