View Single Post
  #3   Spotlight this post!  
Unread 23-01-2015, 18:33
Arhowk's Avatar
Arhowk Arhowk is offline
FiM CSA
AKA: Jake Niman
FRC #1684 (The Chimeras) (5460 Mentor)
 
Join Date: Jan 2013
Rookie Year: 2013
Location: Lapeer
Posts: 542
Arhowk is a splendid one to beholdArhowk is a splendid one to beholdArhowk is a splendid one to beholdArhowk is a splendid one to beholdArhowk is a splendid one to beholdArhowk is a splendid one to behold
Re: Dashboard not displaying messages

because your while loop's condition is k > 10.

You never set k to anything. Therefore, it will just runaway with the thread printing the same numbers to the dashboard (which will be 0 since the encoder was just reset)

you should move everything inside the "while" (plus the "double k = ...") to autonomousPeriodic. (don't use the person above mine's code, as it still suffers from the lack of setting 'k')

Code:
Encoder sampleEncoder = new Encoder(8, 9, false, Encoder.EncodingType.k2X);
public void autonomousInit() {
autoLoopCounter = 0;
sampleEncoder.setMaxPeriod(0.1);
sampleEncoder.setMinRate(10);
sampleEncoder.setDistancePerPulse(5);
sampleEncoder.setSamplesToAverage(7);
sampleEncoder.reset();

SmartDashboard.putNumber("hmm", 2);
}

public void autonomousPeriodic(){
double k = sampleEncoder.getRate();
boolean what = sampleEncoder.getStopped();
String huh = sampleEncoder.getSmartDashboardType();
String k2 = Double.toString(k);
double distance = sampleEncoder.getDistance();
String distance1 = Double.toString(distance);
SmartDashboard.putNumber(k2, k);
SmartDashboard.putNumber(distance1, distance);
SmartDashboard.putBoolean(huh, what);
}
also

1) use more descriptive variable names (huh, what, k2, k are all very, very bad names) (I understand you used these to test, but these for testing isn't even acceptable. You're going to try to fix ur broken test code and u'll end up spending more time re-learning what the variables do than actually fixing the code)
2) don't instantiate ANYTHING (encoder... hint hint) in a function that can be run more than once as your code will error out

Last edited by Arhowk : 23-01-2015 at 18:36.
Reply With Quote