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

43 lines
810 B
C++

#ifndef BINLOWER_H
#define BINLOWER_H
#include "Commands/Command.h"
#include "WPILib.h"
/**
* @brief Lowers the bin elevator until a timeout is reached
*/
class BinLower: public Command{
public:
/**
* @brief Constructs BinLower
*
* @param timeout Timeout in seconds
*/
BinLower(float timeout);
/**
* @brief Initializes the class
*/
void Initialize();
/**
* @brief Lowers the bin elevator at -1.0 power
*/
void Execute();
/**
* @brief Checks if the command is finished
*
* @return True only if the timeout was reached
*/
bool IsFinished();
/**
* @brief Sets the bin elevator to stop
*/
void End();
/**
* @brief Calls End()
*/
void Interrupted();
};
#endif
// vim: ts=2:sw=2:et