![]() |
Data sent from the SmartDashboard to the cRio
We have written a custom 'StaticWidget' extension for the smart dashboard which is attempting to send some data from the dashboard to the robot. We're trying to use some code like this in our widget:
// Plug our values right into the robot's network table NetworkTable table = Robot.getTable(); table.putInt("987IntValue", integer_value); table.putDouble("987DoubleValue",double_value); I see other controls doing this such as 'CheckBox', etc. Our widget seems to be working in the dashboard. My question is, what C++ API can we use to read those values on the cRio side? I was expecting something like SmartDashboard::Get... But I don't see anything like that. |
Re: Data sent from the SmartDashboard to the cRio
Quote:
We are testing this to confirm it works as expected, but ran into a separate problem of disabling our robot when we hit [ENTER] after typing the new value we wanted for the P constant on the SmartDashboard. We'd love to know how to enter data into the SmartDashboard widgets without actually hitting the [ENTER] key on the driver station! |
Re: Data sent from the SmartDashboard to the cRio
Thats strange, I'm looking at the WPILib C++ source in FirstForge and I don't see a GetData function call anywhere in SmartDashboard or its parent classes.
|
Re: Data sent from the SmartDashboard to the cRio
Quote:
After you download, open this help file, select "Contents", "Class List" and then scroll down to the SmartDashboard class. Select this and then scroll down the documentation on the SmartDashboard to the list of "Public Member Functions". GetData() is the third function listed. I just looked in the SmartDashboard.h file on my computer. It is what was provided when I reinstalled the development environment this year. Here is what it contains: "SmartDashboardData* GetData(const char *keyName);" |
Re: Data sent from the SmartDashboard to the cRio
Oh, there is a lot of stuff in there that I don't see in the code I downloaded from FirstForge. Yes it looks like everything we need is there. Thanks!
I was trying to do some research from home where I don't have the development environment. I thought the code in FirstForge would be the latest but it apparently isn't. Here is where I was looking: http://firstforge.wpi.edu/sf/scm/do/...cts.wpilib/scm |
Last I looked, the source in firstforge svn wasn't updated this year. Look at the source installed on your computer.
|
Re: Data sent from the SmartDashboard to the cRio
Joe Ross is correct. I just confirmed again that the repository you were looking in hasn't been updated in over 12 months. The HTML help file I mentioned does seem up-to-date and I found it to be very helpful.
|
Re: Data sent from the SmartDashboard to the cRio
Yes, it all makes sense now :-)
Thanks! |
Re: Data sent from the SmartDashboard to the cRio
Quote:
|
| All times are GMT -5. The time now is 23:24. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi