This repository has been archived on 2020-09-21. You can view files and clone it, but cannot push or open issues or pull requests.
FRC2016-old/DriveBase/src/TankDrive.h

66 lines
1.4 KiB
C
Raw Normal View History

2016-01-28 11:33:19 -05:00
/*
* TankDrive.h
*
* Created on: Jan 28, 2016
* Author: Jason
*/
#ifndef SRC_TANKDRIVE_H_
#define SRC_TANKDRIVE_H_
2016-01-28 13:08:37 -05:00
#ifndef DEADZONE_RADIUS
#define DEADZONE_RADIUS 0.05
#endif // DEADZONE_RADIUS
2016-01-28 11:33:19 -05:00
#include "WPILib.h"
2016-02-02 09:46:08 -05:00
/**
* Encapsulates two RobotDrive objects and keeps them synced by sending
* identical ArcadeDrive calls to each. Also handles massaging of Joystick
* data to smooth out drive operations.
*/
2016-01-28 11:33:19 -05:00
class TankDrive {
2016-01-28 13:08:37 -05:00
2016-01-28 11:33:19 -05:00
public:
TankDrive(CANTalon *l1, CANTalon *l2, CANTalon* r1, CANTalon *r2) {
dt1 = new RobotDrive(l1, r1);
dt2 = new RobotDrive(l2, r2);
2016-01-28 13:08:37 -05:00
}
virtual ~TankDrive() {
delete dt1;
delete dt2;
}
2016-01-28 11:33:19 -05:00
2016-02-02 09:46:08 -05:00
/**
* Calls ArcadeDrive on the two RobotDrive objects for the TankDrive.
* Uses #defined DEADZONE_RADIUS to keep the robot from freaking out.
* Some math on the "rot" variable could make the driving smoother, I think.
*/
void Drive(Joystick *js) {
float x = js->GetX();
float y = js->GetY();
float th = -((1.0 - (js->GetThrottle()))
/ 2.0);
2016-01-28 13:08:37 -05:00
// set deadzone
if (x > -DEADZONE_RADIUS && x < DEADZONE_RADIUS) {
2016-01-28 15:47:56 -05:00
x = 0;
2016-01-28 13:08:37 -05:00
}
if (y > -DEADZONE_RADIUS && y < DEADZONE_RADIUS) {
2016-01-28 15:47:56 -05:00
y = 0;
2016-01-28 13:08:37 -05:00
}
float speed = y * th;
// TODO: do some math here to smooth out turning?
float rot = x * th;
2016-02-02 09:46:08 -05:00
dt1->ArcadeDrive(speed, rot, false);
dt2->ArcadeDrive(speed, rot, false);
2016-01-28 13:08:37 -05:00
}
2016-01-28 11:33:19 -05:00
private:
RobotDrive *dt1, *dt2;
2016-01-28 11:33:19 -05:00
};
#endif /* SRC_TANKDRIVE_H_ */