Tamas Titusz Ban
/
ELEC1620_ExamTemplate_2019
Template for the ELEC1620 End of year exam
TestAdmin/TestAdmin.h
- Committer:
- el16ttb
- Date:
- 2019-03-22
- Revision:
- 0:54721f063ac8
File content as of revision 0:54721f063ac8:
#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