add git ignore and empty code base
[3501/autonomous-driving] / src / org / usfirst / frc / team3501 / robot / subsystems / ExampleSubsystem.java
1
2 package org.usfirst.frc.team3501.robot.subsystems;
3
4 import edu.wpi.first.wpilibj.command.Subsystem;
5
6 /**
7 *
8 */
9 public class ExampleSubsystem extends Subsystem {
10
11 // Put methods for controlling this subsystem
12 // here. Call these from Commands.
13
14 public void initDefaultCommand() {
15 // Set the default command for a subsystem here.
16 //setDefaultCommand(new MySpecialCommand());
17 }
18 }
19