Files
allwpilib/wpilibcExamples/src/main/cpp/examples/examples.json

873 lines
23 KiB
JSON
Raw Normal View History

[
{
"name": "Motor Control",
"description": "Demonstrate controlling a single motor with a Joystick and displaying the net movement of the motor using an encoder.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Encoder",
"SmartDashboard",
"Joystick"
],
"foldername": "MotorControl",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Relay",
"description": "Demonstrate controlling a Relay from Joystick buttons.",
"tags": [
2023-01-22 01:24:10 +02:00
"Hardware",
"Relay",
"Joystick"
],
"foldername": "Relay",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "PDP CAN Monitoring",
"description": "Demonstrate using CAN to monitor the voltage, current, and temperature in the Power Distribution Panel.",
"tags": [
2023-01-22 01:24:10 +02:00
"Hardware",
"PDP",
"SmartDashboard"
],
"foldername": "CANPDP",
"gradlebase": "cpp",
"commandversion": 2
},
{
2023-01-16 18:26:46 +02:00
"name": "Mechanism2d",
"foldername": "Mechanism2d",
"gradlebase": "cpp",
"description": "An example usage of Mechanism2d to display mechanism states on a dashboard.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Elevator",
"Arm",
"Analog",
"Joystick",
"SmartDashboard",
2023-01-16 18:26:46 +02:00
"Mechanism2d"
],
"commandversion": 2
},
{
"name": "Solenoids",
"description": "Demonstrate controlling a single and double solenoid from Joystick buttons.",
"tags": [
2023-01-22 01:24:10 +02:00
"Hardware",
"Joystick",
2023-01-22 01:24:10 +02:00
"Pneumatics"
],
"foldername": "Solenoid",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Encoder",
"description": "Demonstrate displaying the value of a quadrature encoder on the SmartDashboard.",
"tags": [
2023-01-22 01:24:10 +02:00
"Hardware",
"Encoder",
"SmartDashboard"
],
"foldername": "Encoder",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "EventLoop",
"description": "Demonstrate managing a ball system using EventLoop and BooleanEvent.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Flywheel",
"EventLoop"
],
"foldername": "EventLoop",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Arcade Drive",
"description": "An example program which demonstrates the use of Arcade Drive with the DifferentialDrive class",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Differential Drive",
"Joystick"
],
"foldername": "ArcadeDrive",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Tank Drive",
"description": "An example program which demonstrates the use of Tank Drive with the DifferentialDrive class",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Differential Drive",
"Joystick"
],
"foldername": "TankDrive",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Mecanum Drive",
"description": "An example program which demonstrates the use of Mecanum Drive with the MecanumDrive class",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Mecanum Drive",
"Joystick"
],
"foldername": "MecanumDrive",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Ultrasonic",
"description": "Demonstrate using the Ultrasonic class with a ping-response ultrasonic sensor.",
"tags": [
"Hardware",
"Ultrasonic",
"SmartDashboard",
"Shuffleboard"
],
"foldername": "Ultrasonic",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "UltrasonicPID",
"description": "Demonstrate maintaining a set distance using an ultrasonic sensor and PID Control.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Ultrasonic",
"PID",
"Differential Drive"
],
"foldername": "UltrasonicPID",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Gyro",
"description": "An example program showing how to drive straight with using a gyro sensor.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Differential Drive",
"PID",
"Gyro",
"Analog",
"Joystick"
],
"foldername": "Gyro",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Gyro Mecanum",
"description": "An example program showing how to perform mecanum drive with field oriented controls.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Mecanum Drive",
"Gyro",
"Analog",
"Joystick"
],
"foldername": "GyroMecanum",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "HID Rumble",
"description": "An example program showing how to make human interface devices rumble.",
"tags": [
2023-01-22 01:24:10 +02:00
"Hardware",
"XboxController"
],
"foldername": "HidRumble",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "PotentiometerPID",
"description": "An example to demonstrate the use of a potentiometer and PID control to maintain elevator position setpoints.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Analog",
"Elevator",
2023-01-22 01:24:10 +02:00
"PID",
"Joystick"
],
"foldername": "PotentiometerPID",
"gradlebase": "cpp",
"commandversion": 2
},
2019-08-16 22:03:44 -07:00
{
"name": "Elevator with trapezoid profiled PID",
"description": "An example to demonstrate the use of an encoder and trapezoid profiled PID control to reach elevator position setpoints.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Elevator",
"Trapezoid Profile",
"Smart Motor Controller",
2019-08-16 22:03:44 -07:00
"Joystick"
],
"foldername": "ElevatorTrapezoidProfile",
"gradlebase": "cpp",
"commandversion": 2
2019-08-16 22:03:44 -07:00
},
2019-08-14 22:18:00 -07:00
{
"name": "Elevator with profiled PID controller",
"description": "An example to demonstrate the use of an encoder and trapezoid profiled PID control to reach elevator position setpoints.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Elevator",
"Profiled PID",
2019-08-14 22:18:00 -07:00
"Joystick"
],
"foldername": "ElevatorProfiledPID",
"gradlebase": "cpp",
"commandversion": 2
2019-08-14 22:18:00 -07:00
},
{
"name": "Getting Started",
"description": "An example program which demonstrates the simplest autonomous and teleoperated routines.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot"
],
"foldername": "GettingStarted",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Simple Vision",
"description": "The minimal program to acquire images from an attached USB camera on the robot and send them to the dashboard.",
"tags": [
2023-01-22 01:24:10 +02:00
"Vision"
],
"foldername": "QuickVision",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Intermediate Vision",
"description": "An example program that acquires images from an attached USB camera and adds some annotation to the image as you might do for showing operators the result of some image recognition, and sends it to the dashboard for display.",
"tags": [
2023-01-22 01:24:10 +02:00
"Vision"
],
"foldername": "IntermediateVision",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "AprilTags Vision",
"description": "on-roboRIO detection of AprilTags using an attached USB camera.",
"tags": [
"Vision",
"AprilTags"
],
"foldername": "AprilTagsVision",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "I2C Communication",
"description": "An example program that communicates with external devices (such as an Arduino) using the roboRIO's I2C port",
"tags": [
2023-01-22 01:24:10 +02:00
"Hardware",
"I2C"
],
"foldername": "I2CCommunication",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Digital Communication Sample",
"description": "An example program that communicates with external devices (such as an Arduino) using the roboRIO's DIO",
"tags": [
2023-01-22 01:24:10 +02:00
"Hardware",
"Digital Output"
],
"foldername": "DigitalCommunication",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Axis Camera Sample",
"description": "An example program that acquires images from an Axis network camera and adds some annotation to the image as you might do for showing operators the result of some image recognition, and sends it to the dashboard for display. This demonstrates the use of the AxisCamera class.",
"tags": [
2023-01-22 01:24:10 +02:00
"Vision"
],
"foldername": "AxisCameraSample",
"gradlebase": "cpp",
"commandversion": 2
},
{
2019-08-28 20:04:31 -07:00
"name": "GearsBot",
"description": "A fully functional example CommandBased program for WPIs GearsBot robot, using the new command-based framework. This code can run on your computer if it supports simulation.",
"tags": [
2023-01-22 01:24:10 +02:00
"Complete Robot",
"Command-based",
"Differential Drive",
"Elevator",
"Arm",
"Analog",
"Digital Input",
"SmartDashboard",
"XboxController"
],
2019-08-28 20:04:31 -07:00
"foldername": "GearsBot",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "HAL",
"description": "A program created using the HAL exclusively. This example is for advanced users",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"HAL"
],
"foldername": "HAL",
"gradlebase": "c",
"commandversion": 2
},
{
"name": "ShuffleBoard",
"description": "An example program that uses ShuffleBoard with its Widgets and Tabs.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Differential Drive",
"Elevator",
"Analog",
"Encoder",
"Shuffleboard"
],
"foldername": "ShuffleBoard",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "'Traditional' Hatchbot",
"description": "A fully-functional command-based hatchbot for the 2019 game using the new command framework. Written in the 'traditional' style, i.e. commands are given their own classes.",
"tags": [
2023-01-22 01:24:10 +02:00
"Complete Robot",
"Command-based",
"Differential Drive",
"Encoder",
"Pneumatics",
"XboxController"
],
"foldername": "HatchbotTraditional",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "'Inlined' Hatchbot",
"description": "A fully-functional command-based hatchbot for the 2019 game using the new command framework. Written in the 'inlined' style, i.e. many commands are defined inline with lambdas.",
"tags": [
2023-01-22 01:24:10 +02:00
"Complete Robot",
"Command-based",
2023-01-22 01:24:10 +02:00
"Differential Drive",
"Encoder",
"Pneumatics",
"PS4Controller"
],
"foldername": "HatchbotInlined",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Rapid React Command Bot",
"description": "A fully-functional command-based fender bot for the 2022 game using the new command framework.",
"tags": [
2023-01-22 01:24:10 +02:00
"Complete Robot",
"Command-based",
2023-01-22 01:24:10 +02:00
"Differential Drive",
"Intake",
"Flywheel",
"Encoder",
"Pneumatics",
"Digital Input",
"PID",
"XboxController"
],
"foldername": "RapidReactCommandBot",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Select Command Example",
"description": "An example showing how to use the SelectCommand class from the new command framework.",
"tags": [
"Command-based"
],
"foldername": "SelectCommand",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Scheduler Event Logging",
"description": "An example showing how to use Shuffleboard to log Command events from the CommandScheduler in the new command framework",
"tags": [
"Command-based",
"Shuffleboard"
],
"foldername": "SchedulerEventLogging",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Frisbeebot",
"description": "An example robot project for a simple frisbee shooter for the 2013 FRC game, Ultimate Ascent, demonstrating use of PID functionality in the command framework",
"tags": [
2023-01-22 01:24:10 +02:00
"Complete Robot",
"Command-based",
2023-01-22 01:24:10 +02:00
"Differential Drive",
"Flywheel",
"Encoder",
"XboxController",
"PID"
],
"foldername": "Frisbeebot",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Gyro Drive Commands",
"description": "An example command-based robot project demonstrating simple PID functionality utilizing a gyroscope to keep a robot driving straight and to turn to specified angles.",
"tags": [
"Command-based",
2023-01-22 01:24:10 +02:00
"Differential Drive",
"Encoder",
"PS4Controller",
"PID",
2023-01-22 01:24:10 +02:00
"Profiled PID",
"Gyro"
],
"foldername": "GyroDriveCommands",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "SwerveBot",
"description": "An example program for a swerve drive that uses swerve drive kinematics and odometry.",
"tags": [
2023-01-22 01:24:10 +02:00
"Swerve Drive",
"Odometry",
"XboxController",
"Gyro",
"Encoder"
],
"foldername": "SwerveBot",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "MecanumBot",
"description": "An example program for a mecanum drive that uses mecanum drive kinematics and odometry.",
"tags": [
2023-01-22 01:24:10 +02:00
"Mecanum Drive",
"Odometry",
"Encoder",
"Gyro",
"XboxController"
],
"foldername": "MecanumBot",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "DifferentialDriveBot",
"description": "An example program for a differential drive that uses differential drive kinematics and odometry.",
"tags": [
2023-01-22 01:24:10 +02:00
"Differential Drive",
"Odometry",
"Encoder",
"Gyro",
"XboxController"
],
"foldername": "DifferentialDriveBot",
"gradlebase": "cpp",
"commandversion": 2
2019-10-27 00:33:41 -04:00
},
{
"name": "RamseteCommand",
2019-10-27 00:33:41 -04:00
"description": "An example command-based robot demonstrating the use of a RamseteCommand to follow a pregenerated trajectory.",
"tags": [
2023-01-22 01:24:10 +02:00
"Differential Drive",
"Command-based",
2019-10-27 00:33:41 -04:00
"Ramsete",
"Trajectory",
2023-01-22 01:24:10 +02:00
"Path Following",
"Odometry",
"Encoder",
"Gyro",
"XboxController"
2019-10-27 00:33:41 -04:00
],
"foldername": "RamseteCommand",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Arcade Drive Xbox Controller",
"description": "An example program which demonstrates the use of Arcade Drive with the DifferentialDrive class and an Xbox Controller.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Differential Drive",
"XboxController"
],
"foldername": "ArcadeDriveXboxController",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Tank Drive Xbox Controller",
"description": "An example program which demonstrates the use of Tank Drive with the DifferentialDrive class and an Xbox Controller.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Differential Drive",
"XboxController"
],
"foldername": "TankDriveXboxController",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Duty Cycle Encoder",
"description": "Demonstrates the use of the Duty Cycle Encoder class",
"tags": [
2023-01-22 01:24:10 +02:00
"Hardware",
"Duty Cycle",
"Encoder",
"SmartDashboard"
],
"foldername": "DutyCycleEncoder",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Duty Cycle Input",
"description": "Demonstrates the use of the Duty Cycle class",
"tags": [
2023-01-22 01:24:10 +02:00
"Hardware",
"Duty Cycle",
"SmartDashboard"
],
"foldername": "DutyCycleInput",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Addressable LED",
"description": "Demonstrates the use of the Addressable LED class",
"tags": [
2023-01-22 01:24:10 +02:00
"Hardware",
"Basic Robot",
"AddressableLEDs"
],
"foldername": "AddressableLED",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "DMA",
"description": "Demonstrates the use of the DMA class",
"tags": [
2023-01-22 01:24:10 +02:00
"Hardware",
"DMA",
"SmartDashboard"
],
"foldername": "DMA",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "MecanumControllerCommand",
"description": "An example command-based robot demonstrating the use of a MecanumControllerCommand to follow a pregenerated trajectory.",
"tags": [
2023-01-22 01:24:10 +02:00
"Command-based",
"Mecanum Drive",
"Gyro",
"Encoder",
"Odometry",
"Trajectory",
2023-01-22 01:24:10 +02:00
"Path Following",
"XboxController"
],
"foldername": "MecanumControllerCommand",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "SwerveControllerCommand",
"description": "An example command-based robot demonstrating the use of a SwerveControllerCommand to follow a pregenerated trajectory.",
"tags": [
2023-01-22 01:24:10 +02:00
"Command-based",
"Swerve Drive",
"Gyro",
"Encoder",
"Odometry",
"Trajectory",
2023-01-22 01:24:10 +02:00
"Path Following",
"XboxController"
],
"foldername": "SwerveControllerCommand",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "ArmBot",
"description": "An example command-based robot demonstrating the use of a ProfiledPIDSubsystem to control an arm.",
"tags": [
2023-01-22 01:24:10 +02:00
"Command-based",
"Arm",
"Encoder",
"Profiled PID",
"XboxController",
"Differential Drive"
],
"foldername": "ArmBot",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "ArmBotOffboard",
"description": "An example command-based robot demonstrating the use of a TrapezoidProfileSubsystem to control an arm with an offboard PID.",
"tags": [
2023-01-22 01:24:10 +02:00
"Command-based",
"Arm",
"Smart Motor Controller",
"Trapezoid Profile",
"XboxController",
"Differential Drive"
],
"foldername": "ArmBotOffboard",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "DriveDistanceOffboard",
"description": "An example command-based robot demonstrating the use of a TrapezoidProfileCommand to drive a robot a set distance with offboard PID on the drive.",
"tags": [
2023-01-22 01:24:10 +02:00
"Command-based",
"Differential Drive",
"Trapezoid Profile",
"Smart Motor Controller",
"XboxController"
],
"foldername": "DriveDistanceOffboard",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "RamseteController",
"description": "An example robot demonstrating the use of RamseteController.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Differential Drive",
"Ramsete",
"PID",
"Odometry",
"Path Following",
"Trajectory",
"XboxController"
],
"foldername": "RamseteController",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "RomiReference",
"description": "An example command-based robot program that can be used with the Romi reference robot design.",
"tags": [
2023-01-22 01:24:10 +02:00
"Romi",
"Command-based",
"Differential Drive",
"Digital Input",
"Joystick"
],
"foldername": "RomiReference",
"gradlebase": "cppromi",
"commandversion": 2
},
{
"name": "StateSpaceFlywheel",
"description": "An example state-space controller for a flywheel.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Flywheel",
2023-01-22 01:24:10 +02:00
"State-Space",
"LQR",
"Encoder",
"Joystick"
],
"foldername": "StateSpaceFlywheel",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "StateSpaceFlywheelSysId",
"description": "An example state-space controller demonstrating the use of FRC Characterization's System Identification for controlling a flywheel.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Flywheel",
2023-01-22 01:24:10 +02:00
"SysId",
"State-Space",
"LQR",
"Encoder",
"Joystick"
],
"foldername": "StateSpaceFlywheelSysId",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "StateSpaceElevator",
"description": "An example state-space controller for controlling an elevator.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Elevator",
2023-01-22 01:24:10 +02:00
"State-Space",
"LQR",
"Encoder",
"Joystick"
],
"foldername": "StateSpaceElevator",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "StateSpaceArm",
"description": "An example state-space controller for controlling an arm.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Arm",
2023-01-22 01:24:10 +02:00
"State-Space",
"LQR",
"Encoder",
"Joystick"
],
"foldername": "StateSpaceArm",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "ElevatorSimulation",
"description": "Demonstrates the use of physics simulation with a simple elevator.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Elevator",
2023-01-22 01:24:10 +02:00
"State-Space",
"Simulation",
"Mechanism2d"
],
"foldername": "ElevatorSimulation",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "DifferentialDrivePoseEstimator",
"description": "Demonstrates the use of the DifferentialDrivePoseEstimator as a replacement for differential drive odometry.",
"tags": [
2023-01-22 01:24:10 +02:00
"Differential Drive",
"State-Space",
"Pose Estimator",
"Vision",
2023-01-22 01:24:10 +02:00
"PID",
"XboxController"
],
"foldername": "DifferentialDrivePoseEstimator",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "MecanumDrivePoseEstimator",
"description": "Demonstrates the use of the MecanumDrivePoseEstimator as a replacement for mecanum odometry.",
"tags": [
2023-01-22 01:24:10 +02:00
"Mecanum Drive",
"State-Space",
"Pose Estimator",
"Vision",
2023-01-22 01:24:10 +02:00
"PID",
"XboxController"
],
"foldername": "MecanumDrivePoseEstimator",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "ArmSimulation",
"description": "Demonstrates the use of physics simulation with a simple single-jointed arm.",
"tags": [
2023-01-22 01:24:10 +02:00
"Basic Robot",
"Arm",
2023-01-22 01:24:10 +02:00
"State-Space",
"Simulation",
"Mechanism2d",
"Preferences"
],
"foldername": "ArmSimulation",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "UnitTesting",
"description": "Demonstrates basic unit testing for a robot project.",
"tags": [
2023-01-22 01:24:10 +02:00
"Intake",
"Pneumatics"
],
"foldername": "UnitTest",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "SimpleDifferentialDriveSimulation",
"description": "An example of a minimal drivetrain simulation project without the command-based library.",
"tags": [
"Differential Drive",
2023-01-22 01:24:10 +02:00
"State-Space",
"Ramsete",
"Path Following",
"Trajectory",
"Encoder",
"XboxController",
"Simulation"
],
"foldername": "SimpleDifferentialDriveSimulation",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "StateSpaceDriveSimulation",
"description": "Demonstrates the use of physics simulation with a differential drivetrain and the Field2d class.",
"tags": [
2023-01-22 01:24:10 +02:00
"Command-based",
"Differential Drive",
2023-01-22 01:24:10 +02:00
"State-Space",
"XboxController",
"Simulation"
],
"foldername": "StateSpaceDifferentialDriveSimulation",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "SwerveDrivePoseEstimator",
"description": "Demonstrates the use of the SwerveDrivePoseEstimator as a replacement for mecanum drive odometry.",
"tags": [
2023-01-22 01:24:10 +02:00
"Swerve Drive",
"State-Space",
"Pose Estimator",
"Vision",
2023-01-22 01:24:10 +02:00
"PID",
"XboxController"
],
"foldername": "SwerveDrivePoseEstimator",
"gradlebase": "cpp",
"commandversion": 2
}
]