Thanks
The team members of FRC Team 2220 would like to give a big thanks to all of the Sponsors, Mentors and Parents that make having this team possible.
Thank you!
Team Login
| Sensors.h |
|
|
|
| Written by TarinB |
| Saturday, February 13 2010 16:48 |
|
#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 |










