Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   C/C++ (http://www.chiefdelphi.com/forums/forumdisplay.php?f=183)
-   -   Need some help figuring out the SFX SmartDashboard (http://www.chiefdelphi.com/forums/showthread.php?t=143456)

AtomicBrawlers 02-08-2016 05:41 PM

Need some help figuring out the SFX SmartDashboard
 
I've only been able to send values to the SFX window and make them appear. Getting values from the SmartDashboard and using them in the code is a problem however. For example:

double Throttle = SmartDashboard::GetNumber("Get Throttle", 0.0);

This doesn't give me a bug, but as far as I can tell, the variable is always zero. That is probably because I'm unable to change the default case. Nothing appears on the dashboard when I use that code.

Another issue I'm having is getting the camera feed to appear on the SmartDashboard. I'm 99% sure I have the right URL for it entered. The camera being used is the Microsoft Lifecam HD-3000. It appears on the default or C++ dashboard but not the SFX one.

kylelanman 02-09-2016 12:02 AM

Re: Need some help figuring out the SFX SmartDashboard
 
Quote:

Originally Posted by AtomicBrawlers (Post 1537149)
I've only been able to send values to the SFX window and make them appear. Getting values from the SmartDashboard and using them in the code is a problem however. For example:

double Throttle = SmartDashboard::GetNumber("Get Throttle", 0.0);

This doesn't give me a bug, but as far as I can tell, the variable is always zero. That is probably because I'm unable to change the default case. Nothing appears on the dashboard when I use that code.

We have found that SmartDashboard::GetNumber only works if you have previously used SmartDashboard::PutNumber on the same key. So we just do a SmartDashboard::PutNumber in the ctor of all our subsystems for whatever parameters we will need. Then in the periodic methods we can call SmartDashboard::GetNumber and it will work.

AtomicBrawlers 02-10-2016 07:16 PM

Re: Need some help figuring out the SFX SmartDashboard
 
Thanks a ton! It worked! However, would you happen to know how to get the camera to display on the SFX SmartDashboard? I've tried a bunch of different URLs for it and still no luck.


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

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