initial commit
[3501/3501-spark-go] / src / org / usfirst / frc / team3501 / robot / subsystems / Arm.java
CommitLineData
b449387d
LH
1package org.usfirst.frc.team3501.robot.subsystems;
2
3import edu.wpi.first.wpilibj.command.Subsystem;
4
5/**
6 *
7 */
8public class Arm extends Subsystem {
9
10 // Put methods for controlling this subsystem
11 // here. Call these from Commands.
12
13 public void initDefaultCommand() {
14 // Set the default command for a subsystem here.
15 //setDefaultCommand(new MySpecialCommand());
16 }
17}
18