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

25 lines
468 B
C
Raw Normal View History

2015-02-13 21:41:38 -05:00
#ifndef COLLECTTOTE_H
#define COLLECTTOTE_H
#include "Commands/CommandGroup.h"
#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 Collects one tote
*
* Rolls collector wheels in and drives forward in parallel
*/
2015-07-31 12:52:15 -04:00
class CollectTote: public CommandGroup {
public:
/**
* @brief Constructs CollectTote
*
* @param z Joystick z value (default: 0.0)
*/
CollectTote(double z = 0.0);
2015-02-13 21:41:38 -05:00
};
#endif
// vim: ts=2:sw=2:et