View Single Post
  #1   Spotlight this post!  
Unread 08-15-2016, 10:06 PM
cpapplefamily cpapplefamily is offline
Registered User
FRC #3244 (Granite City Gearheads)
Team Role: Mentor
 
Join Date: May 2015
Rookie Year: 2015
Location: Minnesota
Posts: 232
cpapplefamily has a spectacular aura aboutcpapplefamily has a spectacular aura about
PID onTarget() Updated

We been working with PIDcommands and through some searches came to the understanding that the onTarget() method had bugs and was unuseable this year. We came across a thread that mentioned it was repaired in an update to the wpilib so we ran the install new software in Eclips "FRC Plugins - http://first.wpi.edu/FRC/roborio/release/eclipse/"
Two things happened on didn't
First one of our subsystems that
Code:
extends PIDSubsystem implements SpeedController
found errors and needed to add unimplemented methods. It was:
Code:
@Override
	public void stopMotor() {
		// TODO Auto-generated method stub
		
	}
The second was we are getting an error on the console
Code:
ERROR 1 Robot Drive... Output Not updated often enough. java.lag.Thread.run(Thread.hava:745)
Error at java.lang.Thread.run(Thread.java:745): Robot Drive... Output Not updated often enough. 
Finnaly onTarget() still not worky

Any direction you can point us?
Reply With Quote