When you do this in robot code
Code:
SmartDashboard.putNumber("something", 1);
it goes on the
SmartDashboard table.
So on a custom dashboard you might do (in Java)
Code:
NetworkTable sd = NetworkTable.getTable("SmartDashboard");
sd.getNumber("something"); // 1