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

16 lines
262 B
C
Raw Normal View History

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