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?