2015-02-10 20:12:41 -05:00
|
|
|
#ifndef BINRAISE_H
|
|
|
|
#define BINRAISE_H
|
2015-01-31 12:16:02 -05:00
|
|
|
|
|
|
|
#include "Commands/Command.h"
|
|
|
|
#include "WPILib.h"
|
|
|
|
|
2015-02-10 20:12:41 -05:00
|
|
|
class BinRaise: public Command{
|
2015-02-27 06:47:10 -05:00
|
|
|
private:
|
2015-03-01 17:23:23 -05:00
|
|
|
double timeout;
|
2015-01-31 12:16:02 -05:00
|
|
|
public:
|
2015-03-01 17:23:23 -05:00
|
|
|
BinRaise(double);
|
2015-01-31 12:16:02 -05:00
|
|
|
void Initialize();
|
|
|
|
void Execute();
|
|
|
|
bool IsFinished();
|
|
|
|
void End();
|
|
|
|
void Interrupted();
|
|
|
|
};
|
2015-02-10 20:12:41 -05:00
|
|
|
|
2015-01-31 12:16:02 -05:00
|
|
|
#endif
|
2015-02-08 12:26:15 -05:00
|
|
|
// vim: ts=2:sw=2:et
|