TelemetryBackend

Defines a destination that can receive telemetry data. Implement this interface to create custom telemetry outputs (e.g., FtcDashboard, file logger).

Functions

Link copied to clipboard
abstract fun addData(key: String, value: String)

Adds a key-value pair to the telemetry buffer.

Link copied to clipboard
open fun addLine(line: String)

Adds a raw line to the telemetry buffer.

Link copied to clipboard
abstract fun update()

Flushes the buffer to the actual display or log.