2016-01-28 11:33:19 -05:00
|
|
|
#include "WPILib.h"
|
|
|
|
#include "TankDrive.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This sample shows how to use the new CANTalon to just run a motor in a basic
|
|
|
|
* throttle mode, in the same manner as you might control a traditional PWM
|
|
|
|
* controlled motor.
|
|
|
|
*
|
|
|
|
*/
|
2016-01-28 15:47:56 -05:00
|
|
|
class Robot : public IterativeRobot {
|
|
|
|
CANTalon r1_drive;
|
|
|
|
CANTalon r2_drive;
|
|
|
|
CANTalon l1_drive;
|
|
|
|
CANTalon l2_drive;
|
2016-02-01 15:16:25 -05:00
|
|
|
CANTalon shooter1;
|
|
|
|
CANTalon shooter2;
|
2016-02-02 09:39:51 -05:00
|
|
|
TankDrive drive;
|
2016-01-28 11:33:19 -05:00
|
|
|
|
2016-02-01 15:16:25 -05:00
|
|
|
Joystick rstick, lstick;
|
2016-01-28 11:33:19 -05:00
|
|
|
|
|
|
|
// update every 0.01 seconds/10 milliseconds.
|
|
|
|
// The talon only receives control packets every 10ms.
|
2016-01-28 15:47:56 -05:00
|
|
|
//double kUpdatePeriod = 0.010;
|
2016-01-28 11:33:19 -05:00
|
|
|
|
|
|
|
public:
|
|
|
|
Robot()
|
2016-01-28 15:47:56 -05:00
|
|
|
: r1_drive(1), // Initialize the Talon as device 1. Use the roboRIO web
|
|
|
|
r2_drive(2), // interface to change the device number on the talons.
|
|
|
|
l1_drive(3),
|
|
|
|
l2_drive(4),
|
2016-02-01 15:16:25 -05:00
|
|
|
shooter1(10),
|
|
|
|
shooter2(11),
|
2016-02-02 09:39:51 -05:00
|
|
|
drive(&l1_drive, &l2_drive, &r1_drive, &r2_drive),
|
2016-02-01 15:16:25 -05:00
|
|
|
rstick(0),
|
|
|
|
lstick(1)
|
2016-01-28 15:47:56 -05:00
|
|
|
{
|
2016-02-02 09:39:51 -05:00
|
|
|
|
2016-01-28 15:47:56 -05:00
|
|
|
}
|
2016-01-28 11:33:19 -05:00
|
|
|
|
2016-01-28 15:47:56 -05:00
|
|
|
void DisabledInit()
|
|
|
|
{
|
2016-01-28 16:47:25 -05:00
|
|
|
r1_drive.SetSafetyEnabled(false);
|
|
|
|
r2_drive.SetSafetyEnabled(false);
|
|
|
|
l1_drive.SetSafetyEnabled(false);
|
|
|
|
l2_drive.SetSafetyEnabled(false);
|
2016-02-01 15:16:25 -05:00
|
|
|
shooter1.SetSafetyEnabled(false);
|
|
|
|
shooter2.SetSafetyEnabled(false);
|
2016-01-28 15:47:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void TeleopInit()
|
|
|
|
{
|
|
|
|
r1_drive.Enable();
|
|
|
|
r2_drive.Enable();
|
|
|
|
l1_drive.Enable();
|
|
|
|
l2_drive.Enable();
|
|
|
|
|
2016-01-28 16:47:25 -05:00
|
|
|
|
|
|
|
|
2016-01-28 15:47:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void TeleopPeriodic()
|
|
|
|
{
|
2016-02-02 09:39:51 -05:00
|
|
|
drive.Drive(&lstick);
|
2016-02-01 15:16:25 -05:00
|
|
|
|
|
|
|
float power = (1.0 - rstick.GetThrottle()) / 2.0;
|
|
|
|
shooter1.Set(power);
|
|
|
|
shooter2.Set(power);
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-01-28 15:47:56 -05:00
|
|
|
}
|
2016-02-02 09:39:51 -05:00
|
|
|
|
2016-01-28 11:33:19 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
START_ROBOT_CLASS(Robot)
|