Thread: UDP Server
View Single Post
  #6   Spotlight this post!  
Unread 15-08-2012, 13:03
divixsoft's Avatar
divixsoft divixsoft is offline
Registered User
FRC #0835
 
Join Date: Feb 2011
Location: MI
Posts: 29
divixsoft is an unknown quantity at this point
Re: UDP Server

So if my dashboard extension has
Code:
Robot.getTable().beginTransaction();
Robot.getTable().putBoolean("found", true);
Robot.getTable().putDouble("azimuth", azimuth);
Robot.getTable().putDouble("rpms", rpms);
Robot.getTable().endTransaction();
then, I just need to put
Code:
SmartDashboard().getDouble("azimuth");
in my robot code to get the value?
Reply With Quote