diff --git a/wpilibc/src/main/native/cpp/PIDBase.cpp b/wpilibc/src/main/native/cpp/PIDBase.cpp index e5eb8a5d41..872a45a6e3 100644 --- a/wpilibc/src/main/native/cpp/PIDBase.cpp +++ b/wpilibc/src/main/native/cpp/PIDBase.cpp @@ -234,7 +234,7 @@ void PIDBase::Reset() { void PIDBase::PIDWrite(double output) { SetSetpoint(output); } void PIDBase::InitSendable(SendableBuilder& builder) { - builder.SetSmartDashboardType("PIDBase"); + builder.SetSmartDashboardType("PIDController"); builder.SetSafeState([=]() { Reset(); }); builder.AddDoubleProperty("p", [=]() { return GetP(); }, [=](double value) { SetP(value); });