|
Re: Smartdashboard is Troublesome
Quote:
Originally Posted by michaelwm
When the code for our robot is first compiled, the SmartDashboard works and displays all the information as needed, most importantly our variable "throttle". However, as soon as we activate the robot, the entire SmartDashboard becomes blank, showing no variables and disallowing me from creating widgets.
code:
SmartDashboard.putNumber("throttle", throttle);
|
Are you sure you're enabling it in teleop mode? What you're describing sounds like the dashboard going into test mode. Check your teleopPeriodic and autonomousPeriodic, and make sure they don't include this line:
__________________
I code stuff.
|