File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
src/main/java/org/mayheminc/robot2020/subsystems Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change
1
+ /*----------------------------------------------------------------------------*/
2
+ /* Copyright (c) 2019 FIRST. All Rights Reserved. */
3
+ /* Open Source Software - may be modified and shared by FRC teams. The code */
4
+ /* must be accompanied by the FIRST BSD license file in the root directory of */
5
+ /* the project. */
6
+ /*----------------------------------------------------------------------------*/
7
+
8
+ package org .mayheminc .robot2020 .subsystems ;
9
+
10
+ import edu .wpi .first .wpilibj2 .command .SubsystemBase ;
11
+
12
+ public class compressor extends SubsystemBase {
13
+ /**
14
+ * Creates a new compressor.
15
+ */
16
+ public compressor () {
17
+
18
+ }
19
+
20
+ @ Override
21
+ public void periodic () {
22
+ // This method will be called once per scheduler run
23
+ }
24
+ }
You can’t perform that action at this time.
0 commit comments