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

15 lines
225 B
C++

#ifndef COLLECTOR_H
#define COLLECTOR_H
#include "WPILib.h"
class Collector: public Subsystem
{
private:
Talon *motor1, *motor2;
public:
Collector();
void InitDefaultCommand();
void Set(float);
};
#endif