Changes between Version 4 and Version 5 of ControlSystems/SoftwareTeam/Training/GettingStarted/IntroRobotJava
- Timestamp:
- Oct 7, 2019, 10:06:13 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ControlSystems/SoftwareTeam/Training/GettingStarted/IntroRobotJava
v4 v5 47 47 48 48 You can even debug your program on the robot using the VSCode debugger just as you did with Java programs running on your laptop: 49 * Set a breakpoint on the line: xbox = new XboxController(0);49 * Set a breakpoint on the line: {{{ xbox = new XboxController(0); }}} 50 50 * Use the WPILib icon to start debugging: W->Debug Robot Code 51 51 * The program will run until it gets to that line and then stop. Press the continue button to continue running.