Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   Java (http://www.chiefdelphi.com/forums/forumdisplay.php?f=184)
-   -   sending info to a console (http://www.chiefdelphi.com/forums/showthread.php?t=80691)

a kenny03 20-01-2010 16:47

sending info to a console
 
so our team is using java this year, and we have been experiencing difficulty with sending output data to the classmate console. anyone have any way to help me out?

James Dempsey 20-01-2010 19:46

Re: sending info to a console
 
If you are trying to send an output to the console on a development computer, you must use the System.out.print or println methods to send data to the console wheter it be strings, integers, characters etc.

If you want to send information to the dashboard, look through the sample code provided with the FRC plugin in NetBeans.

Hope this helps
-
James D

Edit:
After re-reading your post it sounds like you are trying to send data to the User Messages section of the Dashboard. To access the lower part of the Dashboard you must use the class Dashboard. Here is an example of how to have a class object for the lower half of the Dashboard:

Dashboard lowDashData = DriverStation.getInstance().getDashboardPackerLow( );

You then have to add clusters in order to be able to send your data.
Again sorry if you already knew this but I hope this helped you

a kenny03 21-01-2010 09:05

Re: sending info to a console
 
yeah. i want something like the console from last year. we use windriver, and our team was able to get output data from the robot. thats what we are trying to replicate or get as close as possible

jhersh 21-01-2010 16:44

Re: sending info to a console
 
Quote:

Originally Posted by James Dempsey (Post 903420)
After re-reading your post it sounds like you are trying to send data to the User Messages section of the Dashboard. To access the lower part of the Dashboard you must use the class Dashboard.

I believe that's inaccurate. If you want to send strings to the User Messages, on the Driver Station, you need to use the DriverStationLCD class. If you want to send data to a Dashboard (where you would have to add a text box or other controls), then you use the Dashboard class.

James Dempsey 21-01-2010 21:46

Re: sending info to a console
 
Yes my mistake. I was extremely tired when I responded to this post. The DashboardLCD class should be the class you would use. Here is the link for methods and such:
http://www.wbrobotics.com/javadoc/ed...tationLCD.html

Again sorry for the confusion there on my misinformation, my bad.

a kenny03 21-01-2010 22:36

Re: sending info to a console
 
i have the import for the driverstationlcd class, but i have no clue what to do with it... i think one of my fellow team members might have been able to solve this problem, but i don't know if it works. (that's tomorrow's job)
another note...
does anyone know what 'private access' means, and how to get past it?

jhersh 21-01-2010 22:42

Re: sending info to a console
 
Quote:

Originally Posted by a kenny03 (Post 904374)
i have the import for the driverstationlcd class, but i have no clue what to do with it... i think one of my fellow team members might have been able to solve this problem, but i don't know if it works. (that's tomorrow's job)
another note...
does anyone know what 'private access' means, and how to get past it?

All you need to do is call println() for each line you want to send and then call updateLCD() once after println'ing all the lines that you want to send. You don't need any private members.

a kenny03 22-01-2010 10:16

Re: sending info to a console
 
Quote:

Originally Posted by jhersh (Post 904384)
All you need to do is call println() for each line you want to send and then call updateLCD() once after println'ing all the lines that you want to send. You don't need any private members.

well, i figured that *face palm* but i am still getting an error. i am using the dsLCD class, but i am still getting a private access error

this is my code...
DriverStationLCD robot = new DriverStationLCD();
robot.println(DriverStationLCD.Line.kUser2,1,"this prints on the first line");
robot.updateLCD();

derekwhite 22-01-2010 11:30

Re: sending info to a console
 
Hi A Kenney03,

Call "DriverStationLCD getInstance()" instead of "new DriverStationLCD()".

Since there can only be one DriverStationLCD, the private access prevents you from trying to create two objects to refer to the same item on the driver station.

BTW, errors like this are easier to comment on if you can post the error message. I wasn't sure if you were talking about a compile error, network error, code error, or what :-)

a kenny03 22-01-2010 16:34

Re: sending info to a console
 
ok. thank you. that helps. but new we are having trouble with the user messages system. is there a maximum limit on strings and lines? and how do we use the first line?

jhersh 22-01-2010 23:19

Re: sending info to a console
 
Quote:

Originally Posted by a kenny03 (Post 904784)
ok. thank you. that helps. but new we are having trouble with the user messages system. is there a maximum limit on strings and lines? and how do we use the first line?

There are 6 lines... 21 characters per line. This is based on compatibility with last year's DS.

To use the first line, use the enum value to specify the first line.

full_auto 31-01-2010 22:42

Re: sending info to a console
 
Hey guys, first post here.
We are also having trouble with using DriverStationLCD. The code that I am attempting to use is as follows:
Code:

textOut.println(DriverStationLCD.Line.kUser3, 2, message);
textOut.updateLCD();

where 'textOut' is an instance of DriverStationLCD retrieved with DriverStationLCD.getInstance() and 'message' is a String that is never more than 15 characters.

This code is executed periodically. The problem is that after it executes a few times the DS stops responding and must be restarted to regain functionality. This does not happen if I remove those two lines, so I'm fairly sure that they are the cause.

Has anyone gotten this to work? Any help is greatly appreciated.

full_auto 01-02-2010 17:53

Re: sending info to a console
 
Nobody knows anything that could help?

jhersh 01-02-2010 18:31

Re: sending info to a console
 
Quote:

Originally Posted by full_auto (Post 910928)
This code is executed periodically. The problem is that after it executes a few times the DS stops responding and must be restarted to regain functionality. This does not happen if I remove those two lines, so I'm fairly sure that they are the cause.

Where are they called from? How quickly are they called? Does rebooting the robot affect anything, or is restarting the driver station application the only thing that makes it work again?

full_auto 01-02-2010 19:18

Re: sending info to a console
 
Quote:

Originally Posted by jhersh (Post 911399)
Where are they called from? How quickly are they called? Does rebooting the robot affect anything, or is restarting the driver station application the only thing that makes it work again?

I just got in here a little while ago... It turns out that the problem was not related to the calls to DriverStationLCD, removing those lines only made the error occur much later. All is well now. Thanks.


All times are GMT -5. The time now is 12:44.

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