2
0
mirror of https://github.com/team2059/Dent synced 2025-01-07 22:14:14 -05:00
dent/Subsystems/AirCompressor.h

16 lines
291 B
C
Raw Normal View History

2015-01-20 12:02:46 +00:00
#ifndef AIRCOMPRESSOR_H
#define AIRCOMPRESSOR_H
#include "WPILib.h"
class AirCompressor: public Subsystem
{
private:
Compressor *compressher;
public:
AirCompressor();
void InitDefaultCommand();
2015-01-29 19:53:11 +00:00
int CreateCompressedAir();
int StopCreatingCompressedAir();
2015-01-20 12:02:46 +00:00
};
#endif