There has been some pretty big changes to this year’s game compared to previous years, namely that in Destination: Deep Space, there is no longer a dedicated autonomous period but a Sandstorm period instead. I found this very confusing from a programmer’s perspective. The biggest question I have right now is what exactly does Sandstorm count as? Is it still technically an autonomous mode, or does the robot start in teleop directly now?
This bothers me because WPILib still has methods such as TimedRobot.autonomousInit()
and TimedRobot.teleopInit()
. With the new changes, now I don’t know what methods are going to be called and when. Do you guys have any idea?