Companion

object Companion

Properties

Link copied to clipboard

The default interval for telemetry transmissions to the Driver Station and FtcDashboard.

Link copied to clipboard

Whether to strip HTML from smartAdd and smartLog calls for OpMode instances. Note: This does not apply to BunyipsOpMode instances as it is using a DualTelemetry object.

Link copied to clipboard

The maximum number of telemetry logs that can be stored in the telemetry log.

Functions

Link copied to clipboard
fun smartAdd(format: String, vararg objs: Any?): Telemetry.Item
fun smartAdd(retained: Boolean, format: String, vararg objs: Any?): Telemetry.Item
fun smartAdd(caption: String, format: String, vararg objs: Any?): Telemetry.Item
fun smartAdd(retained: Boolean, caption: String, format: String, vararg objs: Any?): Telemetry.Item

smartAdd is a static utility that will attempt to access a Telemetry object to add new data to either a DualTelemetry object affixed to a BunyipsOpMode, or a standard Telemetry out affixed to any OpMode derivative.

Link copied to clipboard
fun smartLog(format: Any, vararg objs: Any?)
fun smartLog(obj: Class<*>, format: Any, vararg objs: Any?)
fun smartLog(stck: StackTraceElement, format: Any, vararg objs: Any?)

smartLog is a static utility that will attempt to access a Telemetry object to append a new log to a DualTelemetry object affixed to a BunyipsOpMode, or a standard Telemetry out affixed to any OpMode derivative.