2
0
mirror of https://github.com/team2059/Dent synced 2024-12-28 21:02:30 -05:00
dent/Commands/Autonomous/CollectTote.h

25 lines
481 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-02-13 21:41:38 -05:00
class CollectTote: public CommandGroup{
public:
2015-03-01 17:19:00 -05:00
/**
* @brief Constructs CollectTote
2015-03-17 16:33:25 -04:00
*
* @param z Joystick z value (default: 0.0)
2015-03-01 17:19:00 -05:00
*/
2015-03-17 16:33:25 -04:00
CollectTote(double z = 0.0);
2015-02-13 21:41:38 -05:00
};
#endif
// vim: ts=2:sw=2:et