You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This lets robot programs start and stop GRIP to save CPU without having
to wait for the process to start up again.
For example,
NetworkTable table = NetworkTable.getTable("GRIP");
// Stop GRIP without killing the process
table.putBoolean("run", false);
doSomeStuffThatDoesntNeedVision();
// Start GRIP again
table.putBoolean("run", true);
0 commit comments