mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
Fixed documentation errors
This commit is contained in:
parent
123898882c
commit
ecfa765560
@ -25,9 +25,9 @@ class Autonomous: public CommandGroup{
|
||||
/**
|
||||
* @brief Constructs Autonomous
|
||||
*
|
||||
* @param int The sequence to run
|
||||
* @param seq The sequence to run
|
||||
*/
|
||||
Autonomous(int);
|
||||
Autonomous(int seq=0);
|
||||
};
|
||||
#endif
|
||||
// vim: ts=2:sw=2:et
|
||||
|
@ -17,9 +17,9 @@ class Turn: public Command{
|
||||
/**
|
||||
* @brief Constructs Turn
|
||||
*
|
||||
* @param double Timeout in seconds
|
||||
* @param timeout Timeout in seconds
|
||||
*/
|
||||
Turn(double);
|
||||
Turn(double timeout);
|
||||
/**
|
||||
* @brief Initializes the class
|
||||
*/
|
||||
|
@ -11,11 +11,12 @@
|
||||
*/
|
||||
class BinCloseArms: public Command{
|
||||
public:
|
||||
BinCloseArms(double timeout = 0.5);
|
||||
/**
|
||||
* @brief Constructs BinCloseArms
|
||||
*
|
||||
* @param timeout The timeout
|
||||
*/
|
||||
BinCloseArms();
|
||||
BinCloseArms(double timeout = 0.5);
|
||||
/**
|
||||
* @brief Initializes the class
|
||||
*/
|
||||
|
@ -9,14 +9,13 @@
|
||||
*/
|
||||
class BinLower: public Command{
|
||||
private:
|
||||
float timeout; //<! The timeout
|
||||
public:
|
||||
/**
|
||||
* @brief Constructs BinLower
|
||||
*
|
||||
* @param float Timeout in seconds
|
||||
* @param float The timeout
|
||||
*/
|
||||
BinLower(float);
|
||||
BinLower(float timeout);
|
||||
/**
|
||||
* @brief Initializes the class
|
||||
*/
|
||||
|
@ -12,9 +12,9 @@ class BinOpenArms: public Command{
|
||||
/**
|
||||
* @brief Constructs BinOpenArms
|
||||
*
|
||||
* @param double The timeout
|
||||
* @param timeout The timeout
|
||||
*/
|
||||
BinOpenArms(double);
|
||||
BinOpenArms(double timeout);
|
||||
/**
|
||||
* @brief Constructs BinOpenArms
|
||||
*/
|
||||
|
@ -9,15 +9,13 @@
|
||||
*/
|
||||
class BinRaise: public Command{
|
||||
private:
|
||||
float timeout; //<! The timeout
|
||||
public:
|
||||
BinRaise(double);
|
||||
/**
|
||||
* @brief Constructs BinRaise
|
||||
*
|
||||
* @param float Timeout in seconds
|
||||
* @param timeout Timeout in seconds
|
||||
*/
|
||||
BinRaise(float);
|
||||
BinRaise(double timeout);
|
||||
/**
|
||||
* @brief Initializes the class
|
||||
*/
|
||||
|
@ -17,9 +17,9 @@ class RollIn: public Command{
|
||||
/**
|
||||
* @brief Constructs RollIn
|
||||
*
|
||||
* @param double Timeout in seconds
|
||||
* @param double Speed to roll the collector
|
||||
*/
|
||||
RollIn(double);
|
||||
RollIn(double speed);
|
||||
/**
|
||||
* @brief Initializes the class
|
||||
*/
|
||||
|
@ -11,11 +11,12 @@
|
||||
*/
|
||||
class RollOut: public Command{
|
||||
public:
|
||||
RollOut(double timeout = 2.0);
|
||||
/**
|
||||
* @brief Constructs RollOut
|
||||
*
|
||||
* @param timeout The timeout
|
||||
*/
|
||||
RollOut();
|
||||
RollOut(double timeout=2.0);
|
||||
/**
|
||||
* @brief Initializes the class
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user