mirror of
https://github.com/team2059/Zaphod
synced 2024-12-28 20:12:29 -05:00
14 lines
226 B
C
14 lines
226 B
C
|
#include <WPILib.h>
|
||
|
#include "../Definitions.h"
|
||
|
|
||
|
class ZaphodCollector
|
||
|
{
|
||
|
private:
|
||
|
Jaguar *collectorMotor;
|
||
|
public:
|
||
|
ZaphodCollector();
|
||
|
void collectBall();
|
||
|
void releaseBall();
|
||
|
void spinWithShot(float);
|
||
|
};
|