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

18 lines
271 B
C
Raw Normal View History

#ifndef DIO_H
#define DIO_H
#include "WPILib.h"
class DIO{
private:
DigitalInput *elevatorTop, *elevatorBottom;
public:
DIO();
enum e_dioSig{
ELEVATORTOP,
ELEVATORBOTTOM
};
void InitDefaultCommand();
bool Get(e_dioSig);
};
#endif