auto path planner + command interpolation, FURTHER TESTING NEEDED

This commit is contained in:
aarav18
2022-02-10 21:18:00 -07:00
parent 1d58130aca
commit 30656a951f
5 changed files with 76 additions and 64 deletions
-11
View File
@@ -97,17 +97,6 @@ public class Robot extends TimedRobot {
LOGGER.fine("autonomousInit()");
m_autonomousCommand = m_robotContainer.getAutonomousCommand();
/*String autoSelected = SmartDashboard.getString("Auto Selector", "Default");
switch (autoSelected) {
case "My Auto":
autonomousCommand = new MyAutoCommand();
break;
case "Default Auto":
default:
autonomousCommand = new ExampleCommand();
break;
}*/
// schedule the autonomous command (example)
if (m_autonomousCommand != null) {
m_autonomousCommand.schedule();