Go to Post The horse is dead; stop beating it please. - DonRotolo [more]
Home
Go Back   Chief Delphi > Technical > Programming > Java
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
Reply
 
Thread Tools Rate Thread Display Modes
  #1   Spotlight this post!  
Unread 01-23-2015, 06:33 PM
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 : 01-23-2015 at 06:36 PM.
Reply With Quote
Reply


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -5. The time now is 09:00 AM.

The Chief Delphi Forums are sponsored by Innovation First International, Inc.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi