Tamas Titusz Ban
/
ELEC1620_ExamTemplate_2019
Template for the ELEC1620 End of year exam
Diff: TestAdmin/TestAdmin.h
- Revision:
- 0:54721f063ac8
diff -r 000000000000 -r 54721f063ac8 TestAdmin/TestAdmin.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TestAdmin/TestAdmin.h Fri Mar 22 13:11:07 2019 +0000 @@ -0,0 +1,24 @@ +#ifndef LIB_TESTADMIN_H_ +#define LIB_TESTADMIN_H_ + +#include "mbed.h" +#include "N5110.h" +#include "StreamOut.h" + +class TestAdmin{ +public: + static bool testRunning(); + static void setTaskName(const char *str, N5110 *lcd, StreamOut *streamout); + static bool printEnabled; + +private: + static DigitalIn *_skipButton; + static const char *_str; + static N5110 *_lcd; + static StreamOut *_streamOut; + + +}; + +#endif +