Package edu.wpi.first.wpilibj.livewindow
Interface LiveWindowSendable
-
- All Superinterfaces:
Sendable
@Deprecated public interface LiveWindowSendable extends Sendable
Deprecated.Use Sendable directly insteadLive Window Sendable is a special type of object sendable to the live window.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default StringgetName()Deprecated.Gets the name of thisSendableobject.default StringgetSubsystem()Deprecated.Gets the subsystem name of thisSendableobject.default voidinitSendable(SendableBuilder builder)Deprecated.Initializes thisSendableobject.default voidsetName(String name)Deprecated.Sets the name of thisSendableobject.default voidsetSubsystem(String subsystem)Deprecated.Sets the subsystem name of thisSendableobject.voidstartLiveWindowMode()Deprecated.Start having this sendable object automatically respond to value changes reflect the value on the table.voidstopLiveWindowMode()Deprecated.Stop having this sendable object automatically respond to value changes.voidupdateTable()Deprecated.Update the table for this sendable object with the latest values.
-
-
-
Method Detail
-
updateTable
void updateTable()
Deprecated.Update the table for this sendable object with the latest values.
-
startLiveWindowMode
void startLiveWindowMode()
Deprecated.Start having this sendable object automatically respond to value changes reflect the value on the table.
-
stopLiveWindowMode
void stopLiveWindowMode()
Deprecated.Stop having this sendable object automatically respond to value changes.
-
getName
default String getName()
Deprecated.Description copied from interface:SendableGets the name of thisSendableobject.
-
setName
default void setName(String name)
Deprecated.Description copied from interface:SendableSets the name of thisSendableobject.
-
getSubsystem
default String getSubsystem()
Deprecated.Description copied from interface:SendableGets the subsystem name of thisSendableobject.- Specified by:
getSubsystemin interfaceSendable- Returns:
- Subsystem name
-
setSubsystem
default void setSubsystem(String subsystem)
Deprecated.Description copied from interface:SendableSets the subsystem name of thisSendableobject.- Specified by:
setSubsystemin interfaceSendable- Parameters:
subsystem- subsystem name
-
initSendable
default void initSendable(SendableBuilder builder)
Deprecated.Description copied from interface:SendableInitializes thisSendableobject.- Specified by:
initSendablein interfaceSendable- Parameters:
builder- sendable builder
-
-