Changes between Version 12 and Version 13 of Command Based Robot Notes


Ignore:
Timestamp:
Jan 24, 2015, 9:26:30 AM (10 years ago)
Author:
awollack
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Command Based Robot Notes

    v12 v13  
    7777
    7878  {{{addSequential(new Command1());}}}
     79'''Scheduling Commands "How To" '''
     80     Scheduling commands is a important process of running the robot that can easily get out of hand. There are three main types of commands that should be run at any time and some of them may require their own subsystem. These types of commands include Continuously Run Commands, Human Run Commands, and perhaps most importantly Program Run Commands. Continuously Run Commands like reading sensors, determining the state of a subsystem or running hardware constantly (ex. pneumatic compressors) should be run using the default command method.
    7981
    8082For more notes, see [http://wpilib.screenstepslive.com/s/4485/m/13809/l/241892-what-is-command-based-programming Introduction to Command-Based Programming].