Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/main/java/frc/robot/subsystems/notes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
> The CommandScheduler runs every 20ms and it runs the periodic() method of each registered Subsystem.

> Do not run motors in the periodic method because the periodic method runs always

> The default command of a subsystem are run when nothing else is happening

> The periodic() method should be used for checking and logging rather than moving motors

> Subsystems should represent a piece of robot hardware and its most basic controls