mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
13 lines
295 B
C++
13 lines
295 B
C++
|
|
#include "Place.h"
|
||
|
|
#include "OpenClaw.h"
|
||
|
|
#include "SetWristSetpoint.h"
|
||
|
|
#include "SetElevatorSetpoint.h"
|
||
|
|
|
||
|
|
#include <iostream>
|
||
|
|
|
||
|
|
Place::Place() : CommandGroup("Place") {
|
||
|
|
AddSequential(new SetElevatorSetpoint(0.25));
|
||
|
|
AddSequential(new SetWristSetpoint(0));
|
||
|
|
AddSequential(new OpenClaw());
|
||
|
|
}
|