Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix example json for SimpleDifferentialDriveSimulation (NFC) #7561

Merged
merged 2 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions shared/examplecheck.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ def tagList = [
"SmartDashboard", "Shuffleboard", "Sendable", "DataLog",

/* --- Controls --- */
"Exponential Profile", "PID", "State-Space", "Ramsete", "Path Following", "Trajectory",
"SysId", "Simulation", "Trapezoid Profile", "Profiled PID", "Odometry", "LQR",
"Pose Estimator",
"Exponential Profile", "PID", "State-Space", "LTVUnicycleController", "Path Following",
"Trajectory", "SysId", "Simulation", "Trapezoid Profile", "Profiled PID", "Odometry",
"LQR", "Pose Estimator",

/* --- Hardware --- */
"Analog", "Ultrasonic", "Gyro", "Pneumatics", "I2C", "Duty Cycle", "PDP", "DMA", "Relay",
Expand Down
4 changes: 2 additions & 2 deletions wpilibcExamples/src/main/cpp/examples/examples.json
Original file line number Diff line number Diff line change
Expand Up @@ -759,11 +759,11 @@
},
{
"name": "SimpleDifferentialDriveSimulation",
"description": "Simulate a differential drivetrain and follow trajectories with RamseteController (non-command-based).",
"description": "Simulate a differential drivetrain and follow trajectories with LTVUnicycleController (non-command-based).",
"tags": [
"Differential Drive",
"State-Space",
"Ramsete",
"LTVUnicycleController",
"Path Following",
"Trajectory",
"Encoder",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -650,11 +650,11 @@
},
{
"name": "SimpleDifferentialDriveSimulation",
"description": "Simulate a differential drivetrain and follow trajectories with RamseteController (non-command-based).",
"description": "Simulate a differential drivetrain and follow trajectories with LTVUnicycleController (non-command-based).",
"tags": [
"Differential Drive",
"State-Space",
"Ramsete",
"LTVUnicycleController",
"Path Following",
"Trajectory",
"Encoder",
Expand Down
Loading