ShuffleboardValue

class wpilib.shuffleboard.ShuffleboardValue

Bases: pybind11_object

buildInto(parentTable: ntcore._ntcore.NetworkTable, metaTable: ntcore._ntcore.NetworkTable) None

Builds the entries for this value.

Parameters:
  • parentTable – The table containing all the data for the parent. Values that require a complex entry or table structure should call parentTable.getSubtable(getTitle()) to get the table to put data into. Values that only use a single entry should call parentTable.getEntry(getTitle()) to get that entry.

  • metaTable – The table containing all the metadata for this value and its sub-values

disableIfActuator() None

Disables user control of this widget in the Shuffleboard application.

This method is package-private to prevent users from enabling control themselves. Has no effect if the sendable is not marked as an actuator with SendableBuilder::SetActuator().

enableIfActuator() None

Enables user control of this widget in the Shuffleboard application.

This method is package-private to prevent users from enabling control themselves. Has no effect if the sendable is not marked as an actuator with SendableBuilder::SetActuator().

getTitle() str

Gets the title of this Shuffleboard value.