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

15 lines
261 B
C
Raw Normal View History

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