Skip to content

Commit 74c594e

Browse files
committed
Create Compressor.java
1 parent 3a2f325 commit 74c594e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
}

0 commit comments

Comments
 (0)