Change metadata format to dotfile, make certain entries metadata (#666)

Sendable's "Name" is now ".name"
Sendable's "Subsystem" is now ".subsystem"
Command's "name" is now ".name"
Command's "isParented" is now ".isParented"
This commit is contained in:
Sam Carlberg
2017-10-11 23:27:49 -04:00
committed by Peter Johnson
parent ba3a85d0cc
commit f0cc623241
8 changed files with 17 additions and 17 deletions

View File

@@ -61,7 +61,7 @@ public abstract class RobotBase {
inst.setNetworkIdentity("Robot");
inst.startServer("/home/lvuser/networktables.ini");
m_ds = DriverStation.getInstance();
inst.getTable("LiveWindow").getSubTable("~STATUS~").getEntry("LW Enabled").setBoolean(false);
inst.getTable("LiveWindow").getSubTable(".status").getEntry("LW Enabled").setBoolean(false);
LiveWindow.setEnabled(false);
}