initial commit
authorLogan Howard <logan@oflogan.com>
Fri, 17 Apr 2015 02:04:47 +0000 (19:04 -0700)
committerLogan Howard <logan@oflogan.com>
Fri, 17 Apr 2015 02:04:47 +0000 (19:04 -0700)
commitb449387d8a410c4d224b9ebca4cbe6b6689ff26b
treef136d500f58f413655fa8fed2c5eb81b6dbdfbd2
initial commit
15 files changed:
.gitignore [new file with mode: 0644]
build.properties [new file with mode: 0644]
build.xml [new file with mode: 0644]
src/org/usfirst/frc/team3501/robot/Joystick.java [new file with mode: 0644]
src/org/usfirst/frc/team3501/robot/OI.java [new file with mode: 0644]
src/org/usfirst/frc/team3501/robot/Robot.java [new file with mode: 0644]
src/org/usfirst/frc/team3501/robot/RobotMap.java [new file with mode: 0644]
src/org/usfirst/frc/team3501/robot/commands/CloseClaw.java [new file with mode: 0644]
src/org/usfirst/frc/team3501/robot/commands/CommandBase.java [new file with mode: 0644]
src/org/usfirst/frc/team3501/robot/commands/DriveForward.java [new file with mode: 0644]
src/org/usfirst/frc/team3501/robot/commands/DriveWithJoysticks.java [new file with mode: 0644]
src/org/usfirst/frc/team3501/robot/commands/OpenClaw.java [new file with mode: 0644]
src/org/usfirst/frc/team3501/robot/subsystems/Arm.java [new file with mode: 0644]
src/org/usfirst/frc/team3501/robot/subsystems/Claw.java [new file with mode: 0644]
src/org/usfirst/frc/team3501/robot/subsystems/Drivetrain.java [new file with mode: 0644]