Setup port and initialize wheel object for ShooterTest to use
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / subsystems / Shooter.java
CommitLineData
416c4380
YN
1package org.usfirst.frc.team3501.robot.subsystems;\r
2\r
40348cab
E
3import org.usfirst.frc.team3501.robot.Constants;\r
4\r
5import edu.wpi.first.wpilibj.CANTalon;\r
416c4380
YN
6import edu.wpi.first.wpilibj.command.Subsystem;\r
7\r
5585bd31 8public class Shooter extends Subsystem {\r
40348cab 9 CANTalon wheel;\r
5585bd31 10\r
40348cab
E
11 public Shooter() {\r
12 wheel = new CANTalon(Constants.Shooter.SHOOTER_WHEEL_PORT);\r
13 }\r
416c4380 14\r
40348cab
E
15 @Override\r
16 protected void initDefaultCommand() {\r
5585bd31 17\r
40348cab 18 }\r
416c4380 19}\r