Changes between Version 7 and Version 8 of Command Based Robot Notes
- Timestamp:
- Jan 17, 2015, 10:08:23 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Command Based Robot Notes
v7 v8 72 72 * Runs one command in the command group after the other without the need for an end command. 73 73 74 {{{addParallel(new Command1());}}} 75 74 76 - ''Sequential'' 75 77 * Runs one command in the command group after the other with the need for an end() command before moving to the next command. 76 78 77 79 {{{addSequential(new Command1());}}} 78 79 80 {{{addParallel(new Command1());}}}