Eagan, MN
Welcome to the Lockheed Martin / Thomson-Reuters & Eagan High School Team 2220 Website!

PostHeaderIcon Sensors.h

#ifndef SENSORS_H_

#define SENSORS_H_

 

#include <iostream.h>

#include "math.h"

 

 

#include "WPILib.h"

 

class Sensors

{

public:

Sensors(void);

void GetSensors(void);

void StartSensors (void);

Ultrasonic *leftSonic;

Ultrasonic *rightSonic;

bool autonomousMode;

double leftInches;

double rightInches;

};

 

#endif