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

61 lines
1.5 KiB
C
Raw Normal View History

2015-01-16 19:29:55 -05:00
#ifndef DRIVETRAIN_H
#define DRIVETRAIN_H
#include "WPILib.h"
2015-03-09 09:48:18 -04:00
/**
* @brief Drives the robot
*
* 4 wheel mecanum drive
*/
class Drivetrain: public Subsystem{
2015-01-16 20:12:48 -05:00
private:
2015-03-09 09:48:18 -04:00
CANTalon *rightFront, //<! Front right motor
*leftFront, //<! Front left motor
*rightRear, //<! Back right motor
*leftRear; //<! Back left motor
2015-01-16 20:12:48 -05:00
public:
2015-03-09 09:48:18 -04:00
/**
* @brief Constructs Drivetrain
*/
2015-01-16 20:12:48 -05:00
Drivetrain();
2015-03-09 09:48:18 -04:00
/**
* @brief Current motor to test
*/
2015-02-07 09:17:20 -05:00
enum e_motors{
2015-03-09 09:48:18 -04:00
FRONTRIGHT, //<! Front right motor
FRONTLEFT, //<! Front left motor
BACKRIGHT, //<! Back right motor
BACKLEFT //<! Back left motor
2015-02-07 09:17:20 -05:00
};
2015-03-09 09:48:18 -04:00
/**
* @brief No action
*/
2015-01-16 20:12:48 -05:00
void InitDefaultCommand();
2015-03-09 09:48:18 -04:00
/**
* @brief Drives the robot with mecanum
*
* @param double Joystick x value (-1.0 to 1.0)
* @param double Joystick y value (-1.0 to 1.0)
* @param double Joystick z value (-1.0 to 1.0)
* @param double Sensitivity (0.0 to 1.0)
* @param double Gyro value (unused)
*/
void DriveMecanum(double, double, double, double, double);
2015-03-09 09:48:18 -04:00
/**
* @brief Drives the robot with arcade drive
*
* @param double Joystick x value (-1.0 to 1.0)
* @param double Joystick y value (-1.0 to 1.0)
*/
void DriveArcade(double, double);
2015-03-09 09:48:18 -04:00
/**
* @brief Tests one motor
*
* @param e_motors Motor to test
* @param double Power to set motor
*/
void TestMotor(e_motors, double);
2015-01-16 19:29:55 -05:00
};
#endif
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et