-
Notifications
You must be signed in to change notification settings - Fork 0
ShuffleboardUtil
CaedmonM edited this page Jan 12, 2026
·
5 revisions
Notice: Shuffleboard and SmartDashboard have already been deprecated. They will be removed for the 2027 season. As a result, this part of the library will only be available through 2026. We recommend switching to NetworkTablesUtil for future support.
import com.btwrobotics.WhatTime.frc.DashboardManagers.ShuffleboardUtil;The ShuffleboardUtil class provides an easy way to display data on the Shuffleboard using the WPILib SmartDashboard system. It supports multiple data types with overloaded put() methods.
public static void put(String key, double value)public static void put(String key, String value)public static void put(String key, boolean value)public static void put(String key, Object value)ShuffleboardUtil.put("Arm Angle", 37.5);
ShuffleboardUtil.put("Status", "Retracted");
ShuffleboardUtil.put("Intake Active", true);
Object customValue = 42;
ShuffleboardUtil.put("Custom Number", customValue);