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++
Raw Normal View History

2015-02-13 21:41:38 -05:00
#include "CollectTote.h"
#include "../../DentRobot.h"
#include "../Autonomous/AutoDrive.h"
#include "RollIn.h"
CollectTote::CollectTote(){
2015-02-14 14:31:38 -05:00
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));
2015-02-14 13:36:50 -05:00
AddSequential(new RollIn());
2015-02-13 21:41:38 -05:00
}
// vim: ts=2:sw=2:et