Component

public interface Component

A class representing a basic unit of robot organization, encapsulating low-level robot hardware and providing methods to be used by Commands. The CommandScheduler uses components to ensure that multiple commands are not using the same hardware at the same time. Commands that use a component should include that component in their Command.requirements set.

Inheritors

Types

Link copied to clipboard
public class Companion

Functions

Link copied to clipboard

Returns the default Command that will be automatically scheduled when no other Command is using this component.

Link copied to clipboard
public Unit register()

Registers this component.

Link copied to clipboard
public Unit unregister()

Unregisters this component.

Link copied to clipboard
public Unit update()

This method is called repeatedly by the CommandScheduler.