mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
47 lines
829 B
C++
47 lines
829 B
C++
#ifndef BINOPENARMS_H
|
|
#define BINOPENARMS_H
|
|
|
|
#include "Commands/Command.h"
|
|
#include "WPILib.h"
|
|
|
|
/**
|
|
* @brief Opens bin arms (unused)
|
|
*/
|
|
class BinOpenArms: public Command{
|
|
public:
|
|
/**
|
|
* @brief Constructs BinOpenArms
|
|
*
|
|
* @param timeout Timeout in seconds
|
|
*/
|
|
BinOpenArms(double timeout);
|
|
/**
|
|
* @brief Constructs BinOpenArms
|
|
*/
|
|
BinOpenArms();
|
|
/**
|
|
* @brief Initializes the class
|
|
*/
|
|
void Initialize();
|
|
/**
|
|
* @brief Sets the solenoid to open the arms
|
|
*/
|
|
void Execute();
|
|
/**
|
|
* @brief Returns true to prevent solenoid damage
|
|
*
|
|
* @return True
|
|
*/
|
|
bool IsFinished();
|
|
/**
|
|
* @brief Ends the command
|
|
*/
|
|
void End();
|
|
/**
|
|
* @brief Calls End()
|
|
*/
|
|
void Interrupted();
|
|
};
|
|
#endif
|
|
// vim: ts=2:sw=2:et
|