File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 19
19
## OpModes
20
20
* An OpMode can be either Autonomous or Teleop
21
21
* An OpMode can be marked as Disabled or Enabled
22
- * An OpMode has access to the Robot class
22
+ * An OpMode has access to a singleton instance of the Robot class
23
23
## Robot
24
24
* There should be one robot class that is shared between all OpModes
25
25
* A robot has zero or more mechanisms
26
+ * A Robot has zero or more components
27
+
26
28
## Mechanisms
27
- * Every actuator is a mechanism
28
- * Every sensor is a mechanism
29
- * A mechansim can be created by the student and can have zero or more submechanisms
30
- * Example: A claw could have a servo (to open and close) and a range sensor (to determine when something is in the claw)
29
+ * A mechansim can be created by the student and can have zero or more submechanisms and zero or more components
30
+ * Example: A claw could have a servo (to open and close) and a range sensor (to determine when something is in the claw)
31
+
32
+ ## Components
33
+ * Every actuator is a component
34
+ * Every sensor is a component
You can’t perform that action at this time.
0 commit comments