View Single Post
  #4   Spotlight this post!  
Unread 04-02-2012, 14:18
JHebes's Avatar
JHebes JHebes is offline
Registered User
AKA: Josh Hebert
FRC #3467
Team Role: Programmer
 
Join Date: Jan 2012
Rookie Year: 2011
Location: Windham, NH
Posts: 3
JHebes is an unknown quantity at this point
Re: Printing to the DriverStation LCD

Also, this:
Code:
m_LCD->Printf(DriverStationLCD::kUser_Line1, 1, "Message");
should look like this:
Code:
m_LCD->PrintfLine((DriverStationLCD::Line) 0, "Message");
Reply With Quote