2
0
mirror of https://github.com/team2059/Zaphod synced 2024-12-28 20:12:29 -05:00
zaphod/Subsystems/Collector.h

14 lines
226 B
C
Raw Normal View History

#include <WPILib.h>
#include "../Definitions.h"
class ZaphodCollector
{
private:
Jaguar *collectorMotor;
public:
ZaphodCollector();
void collectBall();
void releaseBall();
void spinWithShot(float);
};