summaryrefslogtreecommitdiff
path: root/smartdashboard/src/edu/wpi/first/smartdashboard/livewindow/elements/LiveWindowWidgetRegistrar.java
diff options
context:
space:
mode:
Diffstat (limited to 'smartdashboard/src/edu/wpi/first/smartdashboard/livewindow/elements/LiveWindowWidgetRegistrar.java')
-rw-r--r--smartdashboard/src/edu/wpi/first/smartdashboard/livewindow/elements/LiveWindowWidgetRegistrar.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/smartdashboard/src/edu/wpi/first/smartdashboard/livewindow/elements/LiveWindowWidgetRegistrar.java b/smartdashboard/src/edu/wpi/first/smartdashboard/livewindow/elements/LiveWindowWidgetRegistrar.java
index 0faa69d..4595ba2 100644
--- a/smartdashboard/src/edu/wpi/first/smartdashboard/livewindow/elements/LiveWindowWidgetRegistrar.java
+++ b/smartdashboard/src/edu/wpi/first/smartdashboard/livewindow/elements/LiveWindowWidgetRegistrar.java
@@ -13,6 +13,7 @@ public class LiveWindowWidgetRegistrar {
*/
public static void init() {
DisplayElementRegistry.registerWidget(LWSubsystem.class);
+ DisplayElementRegistry.registerWidget(PIDSubsystem.class);
DisplayElementRegistry.registerWidget(SpeedController.class);
DisplayElementRegistry.registerWidget(RelayController.class);
DisplayElementRegistry.registerWidget(DigitalOutputController.class);
@@ -23,6 +24,7 @@ public class LiveWindowWidgetRegistrar {
DisplayElementRegistry.registerWidget(ServoController.class);
DisplayElementRegistry.registerWidget(PowerDistributionPanel.class);
DisplayElementRegistry.registerWidget(ThreeAxisAccelerometer.class);
+ DisplayElementRegistry.registerWidget(CANSpeedController.class);
}
}