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