mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
23 lines
341 B
C++
23 lines
341 B
C++
#ifndef CloseClaw_H
|
|
#define CloseClaw_H
|
|
|
|
#include "WPILib.h"
|
|
|
|
/**
|
|
* Close the claw.
|
|
*
|
|
* NOTE: It doesn't wait for the claw to close since there is no sensor to
|
|
* detect that.
|
|
*/
|
|
class CloseClaw: public Command {
|
|
public:
|
|
CloseClaw();
|
|
void Initialize();
|
|
void Execute();
|
|
bool IsFinished();
|
|
void End();
|
|
void Interrupted();
|
|
};
|
|
|
|
#endif
|