Quote:
Originally Posted by Joe Ross
You could override the startCompetition method of IterativeRobot to not set LiveWindow Enabled to true.
|
Hey Joe,
Thanks for your suggestion. It lead us disabling the LiveWindow in the Test() method itself. Here is our code:
In our constructor:
Code:
// Get the instance of the Live Window.
m_pLiveWindow = LiveWindow::GetInstance();
In the Test() method:
Code:
// Disable the LiveWindow in Test mode.
// This allows us to use the standard SmartDashboard calls in Test().
m_pLiveWindow->SetEnabled(false);
If anyone else has this issue, please let us know if we can help.
Thanks again,
LASER 3284 Programming Team