add git ignore and empty code base
[3501/autonomous-driving] / src / org / usfirst / frc / team3501 / robot / subsystems / ExampleSubsystem.java
CommitLineData
2a3438ea
ME
1
2package org.usfirst.frc.team3501.robot.subsystems;
3
4import edu.wpi.first.wpilibj.command.Subsystem;
5
6/**
7 *
8 */
9public 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