mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
28 lines
652 B
C++
28 lines
652 B
C++
|
|
#include "OpenClaw.h"
|
||
|
|
|
||
|
|
#include "Robot.h"
|
||
|
|
|
||
|
|
OpenClaw::OpenClaw() {
|
||
|
|
Requires(Robot::collector);
|
||
|
|
}
|
||
|
|
|
||
|
|
// Called just before this Command runs the first time
|
||
|
|
void OpenClaw::Initialize() {
|
||
|
|
Robot::collector->Open();
|
||
|
|
}
|
||
|
|
|
||
|
|
// Called repeatedly when this Command is scheduled to run
|
||
|
|
void OpenClaw::Execute() {}
|
||
|
|
|
||
|
|
// Make this return true when this Command no longer needs to run execute()
|
||
|
|
bool OpenClaw::IsFinished() {
|
||
|
|
return Robot::collector->IsOpen();
|
||
|
|
}
|
||
|
|
|
||
|
|
// Called once after isFinished returns true
|
||
|
|
void OpenClaw::End() {}
|
||
|
|
|
||
|
|
// Called when another command which requires one or more of the same
|
||
|
|
// subsystems is scheduled to run
|
||
|
|
void OpenClaw::Interrupted() {}
|