Skip to content

wpilibsuite/shuffleboard

Folders and files

NameName
Last commit message
Last commit date
Jan 12, 2025
Jul 28, 2020
Feb 10, 2025
Feb 10, 2025
Oct 5, 2018
Nov 28, 2022
Dec 22, 2023
Jul 28, 2020
Feb 10, 2025
Aug 30, 2022
Jul 28, 2020
Jul 28, 2020
Mar 27, 2023
May 7, 2024
Nov 18, 2024
Aug 10, 2017
Oct 27, 2020
Aug 30, 2022
Aug 30, 2022
Dec 3, 2023
Aug 21, 2023
Nov 28, 2018
Jul 28, 2020

Repository files navigation

CI

Shuffleboard

Structure

Shuffleboard is organized into three base projects: api, app, and plugins. plugins has additional subprojects that the main app depends on to provide data types, widgets, and data sources for basic FRC use.

Running

Shuffleboard is installed by the FRC vscode extension: Installation Instructions. It can be launched from the WPILib menu in Visual Studio Code (start tool). It can also be run manually by running the shuffleboard.vbs in c:\Users\public\wpilib\<year>\tools (Windows) or shuffleboard.py in ~/wpilib/<year>/tools (Linux or Mac).

Requirements

  • JRE 17. Java 17 is required. No other version of Java is supported. Java 17 is installed by the WPILib installer.

Building

To run shuffleboard use the command ./gradlew :app:run.

To build the APIs and utility classes used in plugin creation, use the command ./gradlew :api:shadowJar

To build the Shuffleboard application, use the command ./gradlew :app:shadowJar. By default, this will create an executable JAR for your operating system. To build for another OS, use one of the platform-specific builds:

OS Command
Windows 64-bit ./gradlew :app:shadowJar-win64
Windows 32-bit ./gradlew :app:shadowJar-win32
Mac ./gradlew :app:shadowJar-mac64
Linux 64-bit ./gradlew :app:shadowJar-linux64

Only the listed platforms are supported

To build all platform-specific JARs at once, use the command ./gradlew :app:shadowJarAllPlatforms

Requirements

  • JDK 17. JDK 17 is required. No other version of Java is supported.