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

34 lines
803 B
C
Raw Permalink Normal View History

2015-02-06 13:45:01 -05:00
#ifndef AUTONOMOUS_H
#define AUTONOMOUS_H
2015-02-07 12:32:46 -05:00
#include "Commands/CommandGroup.h"
#include "../../DentRobot.h"
2015-02-06 13:45:01 -05:00
#include "../../DentRobot.h"
#include "WPILib.h"
2015-03-01 17:19:00 -05:00
/**
* @brief The autonomous period of the robot
*
* Contains three sequences selectable from the SmartDashboard
* All sequences will wait for the SmartDashboard value "Auto Wait Time"
*
2015-03-01 17:19:00 -05:00
* Sequence 0: Used for testing only
*
* Sequence 1: Drives forward "Auto Zone Distance" at -0.8 power
*
* Sequence 2: Collects a tote, turns, then drives to the auto zone
*
* Sequence 3: Collects two or three totes then drives to auto zone
*/
2015-02-06 13:45:01 -05:00
class Autonomous: public CommandGroup{
public:
2015-03-01 17:19:00 -05:00
/**
* @brief Constructs Autonomous
*
2015-03-09 10:07:54 -04:00
* @param seq The sequence to run
2015-03-01 17:19:00 -05:00
*/
2015-03-09 10:07:54 -04:00
Autonomous(int seq=0);
2015-02-06 13:45:01 -05:00
};
#endif
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et