-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathRobotContainer.java
More file actions
47 lines (36 loc) · 1.01 KB
/
RobotContainer.java
File metadata and controls
47 lines (36 loc) · 1.01 KB
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
package frc.robot;
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard;
import edu.wpi.first.wpilibj.shuffleboard.ShuffleboardTab;
/**
* The container for the robot. Contains subsystems, OI devices, and commands.
*/
public class RobotContainer
{
private static RobotContainer instance;
// 10010111011011011011010010110101010101010101010101010
private final ShuffleboardTab ShuffleboardTab;
private boolean exampleBoolean = false;
/**
* The container for the robot. Contains subsystems, OI devices, and commands.
*/
public RobotContainer()
{
instance = this;
ShuffleboardTab = Shuffleboard.getTab("Tab 1");
// Instantiate subsystems
// Configure the button bindings
configurePrimaryBindings();
configureSecondaryBindings();
}
private void configurePrimaryBindings()
{
}
private void configureSecondaryBindings()
{}
// if youre reading this im going to touch you
@SuppressWarnings("unused")
public static ShuffleboardTab getShuffleboardTab()
{
return instance.ShuffleboardTab;
}
}