This repository was archived by the owner on Sep 14, 2019. It is now read-only.
File tree Expand file tree Collapse file tree
Robot2018/src/org/usfirst/frc/team199/Robot2018 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11
22package org .usfirst .frc .team199 .Robot2018 ;
33
4+ import org .usfirst .frc .team199 .Robot2018 .subsystems .Climber ;
5+ import org .usfirst .frc .team199 .Robot2018 .subsystems .ClimberAssist ;
6+ import org .usfirst .frc .team199 .Robot2018 .subsystems .IntakeEject ;
7+ import org .usfirst .frc .team199 .Robot2018 .subsystems .Lift ;
8+
49import edu .wpi .first .wpilibj .IterativeRobot ;
510import edu .wpi .first .wpilibj .command .Command ;
611import edu .wpi .first .wpilibj .command .Scheduler ;
1621 * directory.
1722 */
1823public class Robot extends IterativeRobot {
19-
24+
25+ public static final Climber climber = new Climber ();
26+ public static final ClimberAssist climberAssist = new ClimberAssist ();
27+ public static final IntakeEject intakeEject = new IntakeEject ();
28+ public static final Lift lift = new Lift ();
2029 public static OI oi ;
2130
2231 Command autonomousCommand ;
Original file line number Diff line number Diff line change @@ -9,7 +9,10 @@ public class Climber extends Subsystem implements ClimberInterface {
99
1010 // Put methods for controlling this subsystem
1111 // here. Call these from Commands.
12-
12+
13+ /**
14+ * Set the default command for a subsystem here.
15+ * */
1316 public void initDefaultCommand () {
1417 // Set the default command for a subsystem here.
1518 //setDefaultCommand(new MySpecialCommand());
Original file line number Diff line number Diff line change @@ -9,7 +9,10 @@ public class ClimberAssist extends Subsystem implements ClimberAssistInterface {
99
1010 // Put methods for controlling this subsystem
1111 // here. Call these from Commands.
12-
12+
13+ /**
14+ * Set the default command for a subsystem here.
15+ * */
1316 public void initDefaultCommand () {
1417 // Set the default command for a subsystem here.
1518 //setDefaultCommand(new MySpecialCommand());
Original file line number Diff line number Diff line change 11package org .usfirst .frc .team199 .Robot2018 .subsystems ;
22
33public interface ClimberAssistInterface {
4-
4+
5+ /**
6+ * Set the default command for a subsystem here.
7+ * */
8+ public void initDefaultCommand ();
9+
510}
Original file line number Diff line number Diff line change 11package org .usfirst .frc .team199 .Robot2018 .subsystems ;
22
33public interface ClimberInterface {
4-
4+
5+ /**
6+ * Set the default command for a subsystem here.
7+ * */
8+ public void initDefaultCommand ();
9+
510}
Original file line number Diff line number Diff line change @@ -9,7 +9,10 @@ public class IntakeEject extends Subsystem implements IntakeEjectInterface {
99
1010 // Put methods for controlling this subsystem
1111 // here. Call these from Commands.
12-
12+
13+ /**
14+ * Set the default command for a subsystem here.
15+ * */
1316 public void initDefaultCommand () {
1417 // Set the default command for a subsystem here.
1518 //setDefaultCommand(new MySpecialCommand());
Original file line number Diff line number Diff line change 11package org .usfirst .frc .team199 .Robot2018 .subsystems ;
22
33public interface IntakeEjectInterface {
4-
4+
5+ /**
6+ * Set the default command for a subsystem here.
7+ * */
8+ public void initDefaultCommand ();
9+
510}
Original file line number Diff line number Diff line change @@ -9,7 +9,10 @@ public class Lift extends Subsystem implements LiftInterface {
99
1010 // Put methods for controlling this subsystem
1111 // here. Call these from Commands.
12-
12+
13+ /**
14+ * Set the default command for a subsystem here.
15+ * */
1316 public void initDefaultCommand () {
1417 // Set the default command for a subsystem here.
1518 //setDefaultCommand(new MySpecialCommand());
Original file line number Diff line number Diff line change 11package org .usfirst .frc .team199 .Robot2018 .subsystems ;
22
33public interface LiftInterface {
4-
4+
5+ /**
6+ * Set the default command for a subsystem here.
7+ * */
8+ public void initDefaultCommand ();
9+
510}
You can’t perform that action at this time.
0 commit comments