2015-01-06 00:07:24 +00:00
|
|
|
#include "HHRobot.h"
|
|
|
|
#include "HHBase.h"
|
|
|
|
HHRobot::HHRobot():
|
|
|
|
hhdrive(new RobotDrive(2,0,3,1)),
|
2015-01-09 20:20:05 -05:00
|
|
|
gyro(new Gyro(1)),
|
2015-01-06 00:07:24 +00:00
|
|
|
joystick1(new Extreme3dPro(0)){
|
|
|
|
hhdrive->SetExpiration(0.1);
|
2015-01-09 20:20:05 -05:00
|
|
|
hhdrive->SetInvertedMotor(RobotDrive::kFrontRightMotor, true);
|
|
|
|
hhdrive->SetInvertedMotor(RobotDrive::kRearLeftMotor,true);
|
2015-01-06 00:07:24 +00:00
|
|
|
}
|
|
|
|
void HHRobot::Init(){
|
|
|
|
printf("Initing\n");
|
|
|
|
printf("Code Version: %f\n",0000.1);
|
2015-01-09 20:20:05 -05:00
|
|
|
gyro->Reset();
|
2015-01-06 00:07:24 +00:00
|
|
|
//Put table values initally to avoid annoying refreshing
|
|
|
|
}
|
|
|
|
//Main function used to handle periodic tasks on the robot
|
|
|
|
void HHRobot::Handler(){
|
2015-01-09 20:20:05 -05:00
|
|
|
const float Kp = 0.3;
|
|
|
|
if(joystick1->GetJoystickButton(1)==1){
|
|
|
|
hhdrive->MecanumDrive_Cartesian(joystick1->GetJoystickAxis("z"), 0, joystick1->GetJoystickAxis("x"));
|
|
|
|
}else if(joystick1->GetJoystickButton(2)==1){
|
|
|
|
hhdrive->MecanumDrive_Cartesian(joystick1->GetJoystickAxis("z"), joystick1->GetJoystickAxis("y"), 0);
|
|
|
|
}else if(joystick1->GetJoystickButton(3)==1){
|
|
|
|
hhdrive->Drive(joystick1->GetJoystickAxis("y"), joystick1->GetJoystickAxis("y")*Kp*-gyro->GetAngle());
|
|
|
|
}else{
|
|
|
|
hhdrive->MecanumDrive_Cartesian(joystick1->GetJoystickAxis("z"), joystick1->GetJoystickAxis("y"), joystick1->GetJoystickAxis("x"));
|
|
|
|
}
|
|
|
|
Wait(0.005);
|
|
|
|
// hhdrive->MecanumDrive_Cartesian(joystick1->GetJoystickAxis("z"), joystick1->GetJoystickAxis("y"), joystick1->GetJoystickAxis("x"));
|
2015-01-06 00:07:24 +00:00
|
|
|
}
|
|
|
|
// vim: ts=2:sw=2:et
|