mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
16 lines
279 B
C++
16 lines
279 B
C++
#ifndef AIRCOMPRESSOR_H
|
|
#define AIRCOMPRESSOR_H
|
|
|
|
#include "WPILib.h"
|
|
class AirCompressor: public Subsystem
|
|
{
|
|
private:
|
|
Compressor *compressor;
|
|
public:
|
|
AirCompressor();
|
|
void InitDefaultCommand();
|
|
void StartCompressing();
|
|
void StopCompressing();
|
|
};
|
|
#endif
|