mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
Add GettingStarted example based on IterativeRobot Change-Id: Ic8caec4f62b7bdbaae7fafedfec5859b2f936809
134 lines
8.8 KiB
XML
134 lines
8.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<examples>
|
|
<!-- TODO add back in when there are enough samples to justify tags
|
|
<tagDescription>
|
|
<name>Simple Robot</name>
|
|
<description>Examples for simple robot programs.</description>
|
|
</tagDescription>
|
|
<tagDescription>
|
|
<name>Network Tables</name>
|
|
<description>Examples of how to use Network Tables to accomplish a
|
|
variety of tasks such as sending and receiving values to both
|
|
dashboards and co-processors.</description>
|
|
</tagDescription>
|
|
<tagDescription>
|
|
<name>Simulation</name>
|
|
<description>Examples that can be run in simulation.</description>
|
|
</tagDescription>-->
|
|
<tagDescription>
|
|
<name>Getting Started with Java</name>
|
|
<description>Examples for getting started with FRC Java</description>
|
|
</tagDescription>
|
|
<example>
|
|
<name>Getting Started</name>
|
|
<description>An example program which demonstrates the simplest autonomous and
|
|
teleoperated routines.</description>
|
|
<tags>
|
|
<tag>Getting Started with Java</tag>
|
|
</tags>
|
|
<packages>
|
|
<package>src/$package-dir</package>
|
|
</packages>
|
|
<files>
|
|
<file source="examples/GettingStarted/src/org/usfirst/frc/team190/robot/Robot.java"
|
|
destination="src/$package-dir/Robot.java"></file>
|
|
</files>
|
|
</example>
|
|
<tagDescription>
|
|
<name>CommandBased Robot</name>
|
|
<description>Examples for CommandBased robot programs.</description>
|
|
</tagDescription>
|
|
|
|
<example>
|
|
<name>GearsBot</name>
|
|
<description>A fully functional example CommandBased program for WPIs GearsBot robot. This code can run on your computer if it supports simulation.</description>
|
|
<tags>
|
|
<tag>CommandBased Robot</tag>
|
|
</tags>
|
|
<packages>
|
|
<package>src/$package-dir</package>
|
|
<package>src/$package-dir/commands</package>
|
|
<package>src/$package-dir/subsystems</package>
|
|
</packages>
|
|
<files>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/OI.java" destination="src/$package-dir/OI.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/Robot.java" destination="src/$package-dir/Robot.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/commands/Autonomous.java" destination="src/$package-dir/commands/Autonomous.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/commands/CloseClaw.java" destination="src/$package-dir/commands/CloseClaw.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/commands/DriveStraight.java" destination="src/$package-dir/commands/DriveStraight.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/commands/OpenClaw.java" destination="src/$package-dir/commands/OpenClaw.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/commands/Pickup.java" destination="src/$package-dir/commands/Pickup.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/commands/Place.java" destination="src/$package-dir/commands/Place.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/commands/PrepareToPickup.java" destination="src/$package-dir/commands/PrepareToPickup.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/commands/SetDistanceToBox.java" destination="src/$package-dir/commands/SetDistanceToBox.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/commands/SetElevatorSetpoint.java" destination="src/$package-dir/commands/SetElevatorSetpoint.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/commands/SetWristSetpoint.java" destination="src/$package-dir/commands/SetWristSetpoint.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/commands/TankDriveWithJoystick.java" destination="src/$package-dir/commands/TankDriveWithJoystick.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/subsystems/Claw.java" destination="src/$package-dir/subsystems/Claw.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/subsystems/DriveTrain.java" destination="src/$package-dir/subsystems/DriveTrain.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/subsystems/Elevator.java" destination="src/$package-dir/subsystems/Elevator.java"></file>
|
|
<file source="examples/GearsBot/src/org/usfirst/frc/team190/robot/subsystems/Wrist.java" destination="src/$package-dir/subsystems/Wrist.java"></file>
|
|
</files>
|
|
</example>
|
|
|
|
<example>
|
|
<name>PacGoat</name>
|
|
<description>A fully functional example CommandBased program for FRC Team 190's 2014 robot. This code can run on your computer if it supports simulation.</description>
|
|
<tags>
|
|
<tag>CommandBased Robot</tag>
|
|
</tags>
|
|
<packages>
|
|
<package>src/$package-dir</package>
|
|
<package>src/$package-dir/commands</package>
|
|
<package>src/$package-dir/subsystems</package>
|
|
<package>src/$package-dir/triggers</package>
|
|
</packages>
|
|
<files>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/OI.java"
|
|
destination="src/$package-dir/OI.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/Robot.java"
|
|
destination="src/$package-dir/Robot.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/CheckForHotGoal.java"
|
|
destination="src/$package-dir/commands/CheckForHotGoal.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/CloseClaw.java"
|
|
destination="src/$package-dir/commands/CloseClaw.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/Collect.java"
|
|
destination="src/$package-dir/commands/Collect.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/DriveAndShootAutonomous.java"
|
|
destination="src/$package-dir/commands/DriveAndShootAutonomous.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/DriveForward.java"
|
|
destination="src/$package-dir/commands/DriveForward.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/DriveWithJoystick.java"
|
|
destination="src/$package-dir/commands/DriveWithJoystick.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/ExtendShooter.java"
|
|
destination="src/$package-dir/commands/ExtendShooter.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/LowGoal.java"
|
|
destination="src/$package-dir/commands/LowGoal.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/OpenClaw.java"
|
|
destination="src/$package-dir/commands/OpenClaw.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/SetCollectionSpeed.java"
|
|
destination="src/$package-dir/commands/SetCollectionSpeed.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/SetPivotSetpoint.java"
|
|
destination="src/$package-dir/commands/SetPivotSetpoint.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/Shoot.java"
|
|
destination="src/$package-dir/commands/Shoot.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/WaitForBall.java"
|
|
destination="src/$package-dir/commands/WaitForBall.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/commands/WaitForPressure.java"
|
|
destination="src/$package-dir/commands/WaitForPressure.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/subsystems/Collector.java"
|
|
destination="src/$package-dir/subsystems/Collector.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/subsystems/DriveTrain.java"
|
|
destination="src/$package-dir/subsystems/DriveTrain.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/subsystems/Pivot.java"
|
|
destination="src/$package-dir/subsystems/Pivot.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/subsystems/Pneumatics.java"
|
|
destination="src/$package-dir/subsystems/Pneumatics.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/subsystems/Shooter.java"
|
|
destination="src/$package-dir/subsystems/Shooter.java"></file>
|
|
<file source="examples/PacGoat/src/org/usfirst/frc/team190/pacgoat/triggers/DoubleButton.java"
|
|
destination="src/$package-dir/triggers/DoubleButton.java"></file>
|
|
</files>
|
|
</example>
|
|
</examples>
|