mirror of
https://github.com/team2059/Zaphod
synced 2024-12-18 20:12:28 -05:00
33 lines
857 B
C++
33 lines
857 B
C++
#ifndef __ZAPHOD_ROBOT_H__
|
|
#define __ZAPHOD_ROBOT_H__
|
|
|
|
#include <WPILib.h>
|
|
#include "ZaphodBase.h"
|
|
#include "Definitions.h"
|
|
|
|
class JoystickController;
|
|
class ZaphodShooter;
|
|
class ZaphodCollector;
|
|
class ZaphodCompressor;
|
|
|
|
class ZaphodRobot
|
|
{
|
|
private:
|
|
Jaguar *right1, *right2, *right3, *left1, *left2, *left3;
|
|
DigitalOutput *frontSonarLeftD, *frontSonarRightD, *rearSonarLeftD, *rearSonarRightD;
|
|
AnalogChannel *frontSonarLeftA, *frontSonarRightA, *rearSonarLeftA, *rearSonarRightA;
|
|
JoystickController *ControlSystem;
|
|
ZaphodShooter *shooter;
|
|
ZaphodCollector *collector;
|
|
ZaphodCompressor *compressorSystem;
|
|
public:
|
|
ZaphodRobot();
|
|
|
|
float frontSonarLeftV, frontSonarRightV, rearSonarLeftV, rearSonarRightV;
|
|
float getFrontSonar();
|
|
float getRearSonar();
|
|
void driveRobot(float,float);
|
|
void handler();
|
|
};
|
|
#endif
|