// Make sure you call the super of robotInit() public void robotInit() { super.robotInit(); // Call enterCommandList and pass in an Array of all the commands you have which extend // ParsableCommand ParsableCommand[] commands = {new ExampleCommand()}; enterCommandList(commands); }
// Make sure you call the super of teleopInit() public void teleopInit() { super.teleopInit(); }
// Make sure you call the super of disabledPeriodic() public void disabledPeriodic() { super.disabledPeriodic(); }
// Make sure you call the super of autonomousInit() public void autonomousInit() { super.autonomousInit(); }