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 String
getName()
Deprecated.Gets the name of thisSendable
object.default String
getSubsystem()
Deprecated.Gets the subsystem name of thisSendable
object.default void
initSendable(SendableBuilder builder)
Deprecated.Initializes thisSendable
object.default void
setName(String name)
Deprecated.Sets the name of thisSendable
object.default void
setSubsystem(String subsystem)
Deprecated.Sets the subsystem name of thisSendable
object.void
startLiveWindowMode()
Deprecated.Start having this sendable object automatically respond to value changes reflect the value on the table.void
stopLiveWindowMode()
Deprecated.Stop having this sendable object automatically respond to value changes.void
updateTable()
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:Sendable
Gets the name of thisSendable
object.
-
setName
default void setName(String name)
Deprecated.Description copied from interface:Sendable
Sets the name of thisSendable
object.
-
getSubsystem
default String getSubsystem()
Deprecated.Description copied from interface:Sendable
Gets the subsystem name of thisSendable
object.- Specified by:
getSubsystem
in interfaceSendable
- Returns:
- Subsystem name
-
setSubsystem
default void setSubsystem(String subsystem)
Deprecated.Description copied from interface:Sendable
Sets the subsystem name of thisSendable
object.- Specified by:
setSubsystem
in interfaceSendable
- Parameters:
subsystem
- subsystem name
-
initSendable
default void initSendable(SendableBuilder builder)
Deprecated.Description copied from interface:Sendable
Initializes thisSendable
object.- Specified by:
initSendable
in interfaceSendable
- Parameters:
builder
- sendable builder
-
-