Changes between Version 8 and Version 9 of Command Based Robot Notes
- Timestamp:
- Jan 17, 2015, 11:03:46 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Command Based Robot Notes
v8 v9 71 71 - ''Parallel'' 72 72 * Runs one command in the command group after the other without the need for an end command. 73 74 {{{addParallel(new Command1());}}} 75 73 74 {{{addParallel(new Command1());}}} 75 - ''Ending Parallel'' 76 * When an end() method is run in a parallel command group, the ended command is removed from the group until the next instance of the command is run. 77 76 78 - ''Sequential'' 77 79 * Runs one command in the command group after the other with the need for an end() command before moving to the next command.