Component

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
object 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
open fun register()

Registers this component.

Link copied to clipboard
open fun unregister()

Unregisters this component.

Link copied to clipboard
open fun update()

This method is called repeatedly by the CommandScheduler.