Sendable

class wpilib.Sendable[source]

Bases: object

The base interface for objects that can be sent over the network through network tables

getName()[source]

Gets the name of this Sendable object.

Return type:str
Returns:Name
Return type:str
getSubsystem()[source]

Gets the subsystem name of this Sendable object.

Return type:str
Returns:subsystem name
Return type:str
initSendable(builder)[source]

Initializes this Sendable object.

Parameters:builder (SendableBuilder) – sendable builder
Return type:None
setName(subsystem, name=None)[source]

Sets the name of this Sendable object.

Parameters:name (str) – Name
Return type:None
setSubsystem(subsystem)[source]

Sets the subsystem name of this Sendable object.

Parameters:subsystem (str) – subsystem name
Return type:None