mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
19 lines
404 B
C++
19 lines
404 B
C++
#ifndef COLLECTOR_H
|
|
#define COLLECTOR_H
|
|
|
|
#include "WPILib.h"
|
|
class Collector: public Subsystem
|
|
{
|
|
private:
|
|
CANTalon *windowMotorLeft, *windowMotorRight, *collectorMotorLeft, *collectorMotorRight;
|
|
DigitalInput *boxSwitch;
|
|
public:
|
|
Collector();
|
|
void InitDefaultCommand();
|
|
void MoveArms(float);
|
|
void MoveRollers(float);
|
|
bool ArmSensor();
|
|
bool BoxCollected();
|
|
};
|
|
#endif
|