Changes between Version 8 and Version 9 of Command Based Robot Notes


Ignore:
Timestamp:
Jan 17, 2015, 11:03:46 AM (10 years ago)
Author:
awollack
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Command Based Robot Notes

    v8 v9  
    7171 - ''Parallel''
    7272    * 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 
    7678 - ''Sequential''
    7779    * Runs one command in the command group after the other with the need for an end() command before moving to the next command.