2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Commands/Collector/CollectTote.cpp

14 lines
377 B
C++

#include "CollectTote.h"
#include "../../DentRobot.h"
#include "../Autonomous/AutoDrive.h"
#include "RollIn.h"
CollectTote::CollectTote(){
AddParallel(new AutoDrive(0.5, -1.0));
AddSequential(new RollIn());
AddParallel(new AutoDrive(0.5, 1.0));
AddSequential(new RollIn());
AddParallel(new AutoDrive(0.5, -1.0));
AddSequential(new RollIn());
}
// vim: ts=2:sw=2:et