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

17 lines
341 B
C
Raw Normal View History

2015-01-16 19:29:55 -05:00
#ifndef DRIVETRAIN_H
#define DRIVETRAIN_H
#include "WPILib.h"
class Drivetrain: public Subsystem
{
2015-01-16 20:12:48 -05:00
private:
2015-01-17 10:34:08 -05:00
Talon *frontLeft, *frontRight, *backLeft, *backRight;
RobotDrive *drive;
2015-01-16 20:12:48 -05:00
public:
Drivetrain();
void InitDefaultCommand();
2015-01-17 10:34:08 -05:00
void DriveMecanum(float, float, float);
void DriveArcade(float, float);
2015-01-16 19:29:55 -05:00
};
#endif