LRT13  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
ProximityTest.h
1 #ifndef PROXIMITY_TEST_H_
2 #define PROXIMITY_TEST_H_
3 
4 #include "../UnitTests/UnitTest.h"
5 #include "DigitalInput.h"
6 #include "../Config/RobotConfig.h"
7 
8 class ProximityTest : public UnitTest
9 {
10 public:
11  ProximityTest();
12  void Run();
13 private:
14  DigitalInput* proximity;
15 };
16 
17 #endif