|
Re: Network Table Viewer / GRIP issue
Hi Fred.
I've added NetworkTable.setClientMode() as well as NetworkTable.setTeam(1518) to my code and verified that GRIP is set to team 1518 as well. I've also switched back to a Windows box which also has the "desktop" build of networktables.jar but I'm still not reading from the table:
NetworkTable.setClientMode();
NetworkTable.setTeam(1518);
NetworkTable table = NetworkTable.getTable("GRIP/myContoursReport");
System.out.println(table);
System.out.println(table.containsKey("area"));
Output:
platform: /Windows/amd64/
NetworkTable: /GRIP/myContoursReport
false
|