-
Notifications
You must be signed in to change notification settings - Fork 0
NetworkTablesUtil
CaedmonM edited this page Jan 12, 2026
·
4 revisions
import com.btwrobotics.WhatTime.frc.DashboardManagers.NetworkTablesUtil;The NetworkTablesUtil class provides an easy way to display data on NetworkTables. 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)NetworkTablesUtil.put("Arm Angle", 37.5);
NetworkTablesUtil.put("Status", "Retracted");
NetworkTablesUtil.put("Intake Active", true);
Object customValue = 42;
NetworkTablesUtil.put("Custom Number", customValue);