
09-02-2012, 15:11
|
|
Registered User
 FRC #0063 (Red Barons)
Team Role: Mentor
|
|
Join Date: Jan 2011
Rookie Year: 2010
Location: 16510
Posts: 182
|
|
|
Re: Sending SmartDashboard Data to cRIO without pressing [ENTER] key
Quote:
Originally Posted by sircedric4
Code:
speedControl = new SendablePIDController(0.0,0.0004,0.0, speedEncoder, shooterMotor1);
Code:
SmartDashboard::GetInstance()->PutData("SendablePIDController",SendablePIDController::GetInstance());
|
It should be:
Code:
SmartDashboard::GetInstance()->PutData("SendablePIDController",speedControl);
|