2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Subsystems/AirCompressor.h

16 lines
277 B
C
Raw Normal View History

2015-01-20 07:02:46 -05:00
#ifndef AIRCOMPRESSOR_H
#define AIRCOMPRESSOR_H
#include "WPILib.h"
class AirCompressor: public Subsystem
{
private:
2015-02-02 20:43:22 -05:00
Compressor *compressor;
2015-01-20 07:02:46 -05:00
public:
AirCompressor();
void InitDefaultCommand();
2015-02-02 19:56:27 -05:00
void StartCompressing();
void StopCompressing();
2015-01-20 07:02:46 -05:00
};
#endif