SuperTelemetry

A powerful telemetry for both the Driver Station and FTC Dashboard.

Types

Link copied to clipboard

A Linable that can share a line with other Inlinables.

Link copied to clipboard
class Item(var caption: String, var value: String) : SuperTelemetry.Inlinable

A telemetry item containing a caption and a value. Can share a line with other items.

Link copied to clipboard
class ItemProvider(var caption: String, var provider: Supplier<Any?>) : SuperTelemetry.Inlinable

A telemetry item that holds a data provider. Useful for changing data.

Link copied to clipboard
abstract class Linable

The basic telemetry line.

Link copied to clipboard

A container for Inlinables with a caption.

Properties

Link copied to clipboard
Link copied to clipboard
@set:JvmName(name = "setAutoClear")
var isAutoClear: Boolean
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val resolution: Double = 2.0

The resolution used by drawSampledPath and drawSampledTrajectory when sampling.

Link copied to clipboard
val robotRadius: Double = 9.0

The radius used by drawRobot.

Functions

Link copied to clipboard
fun addData(caption: String, value: Any?): SuperTelemetry.Item
fun addData(caption: String, format: String, arg1: Any?, vararg args: Any?): SuperTelemetry.Item
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun clear()
Link copied to clipboard
fun clearAll()
Link copied to clipboard
fun drawPoseHistory(poseHistory: List<Pose2d>, color: String)

Draws a list of poses on FTC Dashboard.

Link copied to clipboard
fun drawRobot(pose: Pose2d, color: String)

Draws a robot on FTC Dashboard.

Link copied to clipboard
fun drawSampledPath(path: Path, color: String, resolution: Double = this.resolution)

Draws a path on FTC Dashboard.

Link copied to clipboard
fun drawSampledTrajectory(trajectory: Trajectory, pathColor: String = "#4CAF50", turnColor: String = "#7c4dff", waitColor: String = "#dd2c00", resolution: Double = this.resolution)

Draws a trajectory on FTC Dashboard.

Link copied to clipboard
fun fieldOverlay(): Canvas
Link copied to clipboard
fun register(vararg telemetries: Telemetry)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun reset()
Link copied to clipboard
fun setDisplayFormat(displayFormat: Telemetry.DisplayFormat?)
Link copied to clipboard
fun speak(text: String)
fun speak(text: String, languageCode: String, countryCode: String)
Link copied to clipboard
fun unregister(vararg telemetries: Telemetry): Boolean
Link copied to clipboard
fun update()