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

23 lines
416 B
C
Raw Normal View History

2015-02-13 21:41:38 -05:00
#ifndef RELEASETOTE_H
#define RELEASETOTE_H
#include "Commands/CommandGroup.h"
#include "../../CommandBase.h"
#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