2015-02-13 21:41:38 -05:00
|
|
|
#ifndef RELEASETOTE_H
|
|
|
|
#define RELEASETOTE_H
|
|
|
|
|
|
|
|
#include "Commands/CommandGroup.h"
|
2015-03-09 10:53:35 -04:00
|
|
|
#include "../../DentRobot.h"
|
2015-02-13 21:41:38 -05:00
|
|
|
#include "../../DentRobot.h"
|
|
|
|
#include "WPILib.h"
|
|
|
|
|
2015-03-01 17:19:00 -05:00
|
|
|
/**
|
|
|
|
* @brief Releases one tote
|
|
|
|
*
|
|
|
|
* Rolls collector wheels out and drives backwards in parallel
|
|
|
|
*/
|
2015-02-13 21:41:38 -05:00
|
|
|
class ReleaseTote: public CommandGroup{
|
|
|
|
public:
|
2015-03-01 17:19:00 -05:00
|
|
|
/**
|
|
|
|
* @brief Constructs ReleaseTote
|
|
|
|
*/
|
2015-02-13 21:41:38 -05:00
|
|
|
ReleaseTote();
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
// vim: ts=2:sw=2:et
|