Package-level declarations

Integrations with FTC Dashboard that make working with it much smoother

Types

Link copied to clipboard
class BetterArrayProvider<T>(array: () -> Array<*>, indices: Int) : ValueProvider<T?>
Link copied to clipboard

Singleton class that handles the JoosConfig annotation as well as FTC Dashboard configs for Pose2d, Vector2d, Angle, and other classes as specified by ImmutableConfigProvider and MutableConfigProvider.

Link copied to clipboard
Link copied to clipboard
class CustomProvider<T>(getter: () -> T, setter: (T) -> Unit) : ValueProvider<T>

A custom value provider using getter and setter for get and set.

Link copied to clipboard

Specifies to the Joos annotation processor that this class, when used as a config variable, should be a mutable property/field.

Link copied to clipboard
@Target(allowedTargets = [AnnotationTarget.FUNCTION])
annotation class ImmutableConfigProvider(val priority: Int = 0)

Specifies a custom config provider to be used by ConfigHandler. Functions with this annotation should take in two arguments (the property getter and setter, in that order) and return a ConfigVariable. They should also be static (In Kotlin, this means using JvmStatic, a companion object, or a top-level function).

Link copied to clipboard

An alternative to Config that automatically handles more complex types like trajectories, poses, and angles, or even custom types using MutableConfigProvider or ImmutableConfigProvider. Its functionality is the same such that if a class has this annotation, all of its public, static, non-final fields will be added to FTC Dashboard (unless the class also has the Disabled annotation).

Link copied to clipboard
@Target(allowedTargets = [AnnotationTarget.FUNCTION])
annotation class MutableConfigProvider(val priority: Int = 0)

Specifies a custom config provider to be used by ConfigHandler. Functions with this annotation should take in one argument (the value to generate a config for) and return a ConfigVariable. They should also be static (In Kotlin, this means using JvmStatic, a companion object, or a top-level function).

Link copied to clipboard

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