mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-30 02:31:44 +00:00
13 lines
322 B
C++
13 lines
322 B
C++
|
|
#include "PrepareToPickup.h"
|
||
|
|
#include "OpenClaw.h"
|
||
|
|
#include "SetWristSetpoint.h"
|
||
|
|
#include "SetElevatorSetpoint.h"
|
||
|
|
|
||
|
|
#include <iostream>
|
||
|
|
|
||
|
|
PrepareToPickup::PrepareToPickup() : CommandGroup("PrepareToPickup") {
|
||
|
|
AddParallel(new OpenClaw());
|
||
|
|
AddParallel(new SetWristSetpoint(0));
|
||
|
|
AddSequential(new SetElevatorSetpoint(0));
|
||
|
|
}
|