I am trying to putString to a NetworkTable and or the SmartDashBoard but every time I run the code it doesn't display anything to the SmartDashBoard. Any suggestions on how to make this work so we can see the tables on the SmartDashBoard?
Here is my code
Code:
public class Robot extends IterativeRobot {
public static final ExampleSubsystem exampleSubsystem = new ExampleSubsystem();
public static OI oi;
NetworkTable contourReport;
public Robot()
{
contourReport = NetworkTable.getTable("GRIP/myContoursReport");
}
public void testPeriodic() {
LiveWindow.run();
SmartDashboard.putString("Hello", "World");
contourReport.putString("Hello", "World");
}
public void testInit()
{
}
}