2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Subsystems/Collector.h
2015-02-15 17:10:20 -05:00

19 lines
421 B
C++

#ifndef COLLECTOR_H
#define COLLECTOR_H
#include "WPILib.h"
class Collector: public Subsystem
{
private:
CANTalon *collectorMotorLeft, *collectorMotorBottom, *collectorMotorRamp, *collectorMotorRight;
AnalogInput *sonarAnalog;
DigitalOutput *sonarDigital;
public:
Collector();
void InitDefaultCommand();
void MoveRollers(double);
double GetSonarDistance();
};
#endif
// vim: ts=2:sw=2:et