-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRobot.java
155 lines (134 loc) · 5.41 KB
/
Robot.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package org.usfirst.frc.team5112.robot;
import edu.wpi.cscore.UsbCamera;
import edu.wpi.first.wpilibj.CameraServer;
import edu.wpi.first.wpilibj.Compressor;
import edu.wpi.first.wpilibj.DriverStation;
import edu.wpi.first.wpilibj.TimedRobot;
import edu.wpi.first.wpilibj.command.Command;
import edu.wpi.first.wpilibj.command.Scheduler;
import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
import org.usfirst.frc.team5112.robot.commands.*;
import org.usfirst.frc.team5112.robot.commands.commandGroups.AutoBaselineCommand;
import org.usfirst.frc.team5112.robot.commands.commandGroups.AutoScaleCommand;
import org.usfirst.frc.team5112.robot.commands.commandGroups.AutoSwitchCommand;
import org.usfirst.frc.team5112.robot.commands.commandGroups.StopEverything;
import org.usfirst.frc.team5112.robot.subsystems.*;
public class Robot extends TimedRobot {
public static OI m_oi;
public static Drivetrain drivetrain;
public static Elevator elevator;
public static Climber climber;
public static Intake intake;
public static Gripper gripper;
// public static String gameData;
// public static char[] plateStates; // 'L' if left, 'R' if right
// public static char startingPos; // 'L' if left, 'C' if center, 'R' if right
Command m_autonomousCommand;
SendableChooser<Command> m_chooser = new SendableChooser<>();
SendableChooser<Character> startPosition_chooser = new SendableChooser<>();
/**
* This function is run when the robot is first started up and should be
* used for any initialization code.
*/
@Override
public void robotInit() {
// Compressor myCompressor = new Compressor(0);
// myCompressor.setClosedLoopControl(true);
RobotMap.init();
drivetrain = new Drivetrain();
elevator = new Elevator ();
climber = new Climber ();
gripper = new Gripper ();
intake = new Intake ();
m_oi = new OI ();
startPosition_chooser.addDefault("Left Driver Station", 'L');
startPosition_chooser.addObject("Center Driver Station", 'C');
startPosition_chooser.addObject("Right Driver Station", 'R');
SmartDashboard.putData("Start Position", startPosition_chooser);
m_chooser.addDefault("Do Nothing", new StopEverything());
m_chooser.addObject("Go for Switch (Auto)", new AutoSwitchCommand()); // TODO: Give the command the data it needs (starting position & plate state)
m_chooser.addObject("Go for Scale (Auto)", new AutoScaleCommand()); // TODO: Give the command the data it needs (starting position & plate state)
m_chooser.addDefault("Default Auto", new StopEverything());
m_chooser.addObject("Go for Switch (Auto)", new AutoSwitchCommand());
m_chooser.addObject("Go for Scale (Auto)", new AutoScaleCommand());
m_chooser.addObject("Go for Baseline (Auto)", new AutoBaselineCommand());
SmartDashboard.putData("Auto Mode", m_chooser);
UsbCamera camera1 = CameraServer.getInstance().startAutomaticCapture(0);
camera1.setResolution(320, 240);
UsbCamera camera2 = CameraServer.getInstance().startAutomaticCapture(1);
camera2.setResolution(320, 240);
}
/**
* This function is called once each time the robot enters Disabled mode.
* You can use it to reset any subsystem information you want to clear when
* the robot is disabled.
*/
@Override
public void disabledInit() {
}
@Override
public void disabledPeriodic() {
Scheduler.getInstance().run();
}
/**
* This autonomous (along with the chooser code above) shows how to select
* between different autonomous modes using the dashboard. The sendable
* chooser code works with the Java SmartDashboard. If you prefer the
* LabVIEW Dashboard, remove all of the chooser code and uncomment the
* getString code to get the auto name from the text box below the Gyro
*
* <p>You can add additional auto modes by adding additional commands to the
* chooser code above (like the commented example) or additional comparisons
* to the switch structure below with additional strings & commands.
*/
@Override
public void autonomousInit() {
m_autonomousCommand = m_chooser.getSelected();
// startingPos = startPosition_chooser.getSelected();
//
// gameData = DriverStation.getInstance().getGameSpecificMessage();
// if (gameData.length() >= 3)
// plateStates = new char[] {gameData.charAt(0), gameData.charAt(1), gameData.charAt(2)};
//
/*
* String autoSelected = SmartDashboard.getString("Auto Selector",
* "Default"); switch(autoSelected) { case "My Auto": autonomousCommand
* = new MyAutoCommand(); break; case "Default Auto": default:
* autonomousCommand = new ExampleCommand(); break; }
*/
if (m_autonomousCommand != null) {
m_autonomousCommand.start();
}
}
/**
* This function is called periodically during autonomous.
*/
@Override
public void autonomousPeriodic() {
Scheduler.getInstance().run();
}
@Override
public void teleopInit() {
// This makes sure that the autonomous stops running when
// teleop starts running. If you want the autonomous to
// continue until interrupted by another command, remove
// this line or comment it out.
if (m_autonomousCommand != null) {
m_autonomousCommand.cancel();
}
}
/**
* This function is called periodically during operator control.
*/
@Override
public void teleopPeriodic() {
Scheduler.getInstance().run();
}
/**
* This function is called periodically during test mode.
*/
@Override
public void testPeriodic() {
}
}