Beta8397 / virtual_robot

A 2D robot simulator to help beginners learn Java programming for FTC Robotics
118 stars 182 forks source link

Recent Feature Changes #14

Closed jkenney2 closed 5 years ago

jkenney2 commented 5 years ago

@alan412 @c4glenn

Thanks for your contributions! If you clone or download the repository, you'll find they (regular OpMode capability, ftc16072 example op modes, gamepad deadzone) are incorporated, and that there have been a couple of additional significant changes:

  1. The app now allows the use of two gamepads (just use Start-A and Start-B as you would for FTC SDK).

  2. OpModes are now registered in the same way the FTC SDK does it, using TeleOp, Autonomous, and Disabled annotations. The OpModes class and OpModeList are gone. In theory, you should be able to put your op modes in any package, not just teamcode.

alan412 commented 5 years ago

New master looks great! (As you can tell, we are using it as a rookie team and it is very helpful for us debugging)