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

15 lines
225 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-01-17 12:21:16 -05:00
Talon *motor1, *motor2;
2015-01-16 20:12:48 -05:00
public:
Collector();
void InitDefaultCommand();
2015-01-17 12:21:16 -05:00
void Set(float);
};
#endif