2
0
mirror of https://github.com/team2059/Dent synced 2025-01-07 22:14:14 -05:00
dent/Subsystems/Collector.h

19 lines
416 B
C
Raw Normal View History

#ifndef COLLECTOR_H
#define COLLECTOR_H
#include "WPILib.h"
class Collector: public Subsystem
{
2015-01-16 20:12:48 -05:00
private:
2015-02-08 12:19:39 -05:00
CANTalon *windowMotorLeft, *windowMotorRight, *collectorMotorLeft, *collectorMotorBottom, *collectorMotorRight;
2015-01-16 20:12:48 -05:00
public:
Collector();
void InitDefaultCommand();
2015-02-06 20:38:02 -05:00
void MoveArms(double);
void MoveRollers(double);
2015-02-02 19:56:27 -05:00
bool ArmSensor();
bool BoxCollected();
};
#endif
2015-02-07 13:28:08 -05:00
// vim: ts2:sw=2:et