diff --git a/wpilibcExamples/src/main/cpp/examples/DriveDistanceOffboard/include/Constants.h b/wpilibcExamples/src/main/cpp/examples/DriveDistanceOffboard/include/Constants.h index 92f82ba3f4..6644c089af 100644 --- a/wpilibcExamples/src/main/cpp/examples/DriveDistanceOffboard/include/Constants.h +++ b/wpilibcExamples/src/main/cpp/examples/DriveDistanceOffboard/include/Constants.h @@ -28,9 +28,8 @@ constexpr int kRightMotor2Port = 3; // These are example values only - DO NOT USE THESE FOR YOUR OWN ROBOT! // These characterization values MUST be determined either experimentally or -// theoretically for *your* robot's drive. The RobotPy Characterization -// Toolsuite provides a convenient tool for obtaining these values for your -// robot. +// theoretically for *your* robot's drive. The SysId tool provides a convenient +// method for obtaining these values for your robot. constexpr auto ks = 1_V; constexpr auto kv = 0.8_V * 1_s / 1_m; constexpr auto ka = 0.15_V * 1_s * 1_s / 1_m; diff --git a/wpilibcExamples/src/main/cpp/examples/MecanumControllerCommand/include/Constants.h b/wpilibcExamples/src/main/cpp/examples/MecanumControllerCommand/include/Constants.h index 592e9488a8..8d59a2cac9 100644 --- a/wpilibcExamples/src/main/cpp/examples/MecanumControllerCommand/include/Constants.h +++ b/wpilibcExamples/src/main/cpp/examples/MecanumControllerCommand/include/Constants.h @@ -56,9 +56,8 @@ constexpr double kEncoderDistancePerPulse = // These are example values only - DO NOT USE THESE FOR YOUR OWN ROBOT! // These characterization values MUST be determined either experimentally or -// theoretically for *your* robot's drive. The RobotPy Characterization -// Toolsuite provides a convenient tool for obtaining these values for your -// robot. +// theoretically for *your* robot's drive. The SysId tool provides a convenient +// method for obtaining these values for your robot. constexpr auto ks = 1_V; constexpr auto kv = 0.8 * 1_V * 1_s / 1_m; constexpr auto ka = 0.15 * 1_V * 1_s * 1_s / 1_m; diff --git a/wpilibcExamples/src/main/cpp/examples/SwerveControllerCommand/include/Constants.h b/wpilibcExamples/src/main/cpp/examples/SwerveControllerCommand/include/Constants.h index 3a3b75abbc..e6fa13653d 100644 --- a/wpilibcExamples/src/main/cpp/examples/SwerveControllerCommand/include/Constants.h +++ b/wpilibcExamples/src/main/cpp/examples/SwerveControllerCommand/include/Constants.h @@ -58,9 +58,8 @@ constexpr bool kRearRightDriveEncoderReversed = true; // These are example values only - DO NOT USE THESE FOR YOUR OWN ROBOT! // These characterization values MUST be determined either experimentally or -// theoretically for *your* robot's drive. The RobotPy Characterization -// Toolsuite provides a convenient tool for obtaining these values for your -// robot. +// theoretically for *your* robot's drive. The SysId tool provides a convenient +// method for obtaining these values for your robot. constexpr auto ks = 1_V; constexpr auto kv = 0.8 * 1_V * 1_s / 1_m; constexpr auto ka = 0.15 * 1_V * 1_s * 1_s / 1_m; diff --git a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/drivedistanceoffboard/Constants.java b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/drivedistanceoffboard/Constants.java index 64ba2672d7..0c7aeeb27f 100644 --- a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/drivedistanceoffboard/Constants.java +++ b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/drivedistanceoffboard/Constants.java @@ -22,8 +22,7 @@ public final class Constants { // These are example values only - DO NOT USE THESE FOR YOUR OWN ROBOT! // These characterization values MUST be determined either experimentally or theoretically // for *your* robot's drive. - // The RobotPy Characterization Toolsuite provides a convenient tool for obtaining these - // values for your robot. + // The SysId tool provides a convenient method for obtaining these values for your robot. public static final double ksVolts = 1; public static final double kvVoltSecondsPerMeter = 0.8; public static final double kaVoltSecondsSquaredPerMeter = 0.15; diff --git a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/mecanumcontrollercommand/Constants.java b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/mecanumcontrollercommand/Constants.java index e959ac23c0..99962ee4a5 100644 --- a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/mecanumcontrollercommand/Constants.java +++ b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/mecanumcontrollercommand/Constants.java @@ -55,8 +55,7 @@ public final class Constants { // These are example values only - DO NOT USE THESE FOR YOUR OWN ROBOT! // These characterization values MUST be determined either experimentally or theoretically // for *your* robot's drive. - // The RobotPy Characterization Toolsuite provides a convenient tool for obtaining these - // values for your robot. + // The SysId tool provides a convenient method for obtaining these values for your robot. public static final SimpleMotorFeedforward kFeedforward = new SimpleMotorFeedforward(1, 0.8, 0.15); diff --git a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervecontrollercommand/Constants.java b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervecontrollercommand/Constants.java index b4e8e54483..328610807c 100644 --- a/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervecontrollercommand/Constants.java +++ b/wpilibjExamples/src/main/java/edu/wpi/first/wpilibj/examples/swervecontrollercommand/Constants.java @@ -64,8 +64,7 @@ public final class Constants { // These are example values only - DO NOT USE THESE FOR YOUR OWN ROBOT! // These characterization values MUST be determined either experimentally or theoretically // for *your* robot's drive. - // The RobotPy Characterization Toolsuite provides a convenient tool for obtaining these - // values for your robot. + // The SysId tool provides a convenient method for obtaining these values for your robot. public static final double ksVolts = 1; public static final double kvVoltSecondsPerMeter = 0.8; public static final double kaVoltSecondsSquaredPerMeter = 0.15;