mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
16 lines
262 B
C
16 lines
262 B
C
|
#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
|