View Single Post
  #1   Spotlight this post!  
Unread 03-02-2017, 19:51
Maxwell777's Avatar
Maxwell777 Maxwell777 is offline
Is allowed to touch stuff now
AKA: Jackson Gray
FRC #0842 (Falcon Robotics)
Team Role: Programmer
 
Join Date: Aug 2013
Rookie Year: 2014
Location: Phoenix, AZ
Posts: 73
Maxwell777 has a spectacular aura aboutMaxwell777 has a spectacular aura aboutMaxwell777 has a spectacular aura about
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);
	}
}
Am I missing something?
__________________
But why?
Reply With Quote