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

16 lines
262 B
C
Raw Normal View History

2015-02-20 15:54:41 -05:00
#ifndef PNEUMATICS_H
#define PNEUMATICS_H
2015-02-20 11:27:39 -05:00
#include "WPILib.h"
2015-02-20 15:54:41 -05:00
class Pneumatics: public Subsystem
2015-02-20 11:27:39 -05:00
{
private:
Solenoid *solenoid1, *solenoid2;
public:
2015-02-20 15:54:41 -05:00
Pneumatics();
2015-02-20 11:27:39 -05:00
void InitDefaultCommand();
void SetOpen(bool);
};
#endif
// vim: ts=2:sw=2:et