Subsystems
Subsystems are helper classes that directly control the robot's hardware. Typically, there should be a subsystem for each major component of the robot's hardware (e.g., elevator, drivetrain, etc.) They can vary in size and functionality, but are designed as Singletons
(classes with only one instance at a time) to prevent issues with syncing and even more unnecessary tears.
Subsystems' designs can have a ton of variation— a ClimbSubsystem
subsystem wouldn't (hopefully) be the same length or design as something like a DriveSubsystem
command.
void GetInstance()
As mentioned back in APCS vs FRC, people use GetInstance()
to create objects. If you didn't read it, GetInstance()
just returns an instance of an object. It's just a getter/accessor method in Encapsulation.
Challenge— Write a GetInstance() Method
Let's say you have a TankDriveSubsystem
, and it has over a thousand lines of code. Now, create a GetInstance() method for it!
All your code should do is:
Note: This is only one potential answer. There could be dozens of others, but as long as they return an instance, they're fine.
void Periodic()
The Periodic()
method is continuously called by CommandScheduler while the subsystem is in use by a command. Because this method runs frequently, optimize the code for the sake of you three months later when rereading your code, the compiler, and the rest of the programmers.
Default Commands
When no other commands are using a subsystem, it automatically runs its default command. Default Commands are commands that are run when nothing is using the subsystem. They're useful for handling background tasks, such as preventing gravity from dragging down an arm while idle.
It would be a shame if I "taught" you what default commands were without actually explaining how to set them! That's where SetDefaultCommand() becomes relevant!
SetDefaultCommand(Command c)
SetDefaultCommand()
has one parameter, c. Take a guess at what this method does with this command! (sets default command to whatever's in its parameters)
Challenge: Write a
Last updated