mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
23 lines
406 B
C++
23 lines
406 B
C++
#ifndef RELEASETOTE_H
|
|
#define RELEASETOTE_H
|
|
|
|
#include "Commands/CommandGroup.h"
|
|
#include "../../DentRobot.h"
|
|
#include "../../DentRobot.h"
|
|
#include "WPILib.h"
|
|
|
|
/**
|
|
* @brief Releases one tote
|
|
*
|
|
* Rolls collector wheels out and drives backwards in parallel
|
|
*/
|
|
class ReleaseTote: public CommandGroup {
|
|
public:
|
|
/**
|
|
* @brief Constructs ReleaseTote
|
|
*/
|
|
ReleaseTote();
|
|
};
|
|
#endif
|
|
// vim: ts=2:sw=2:et
|