CommandLine.h 421 B

123456789101112131415161718192021222324
  1. #ifndef CommandLine_h
  2. #define CommandLine_h
  3. #include "MenuFunctions.h"
  4. #include "WiFiScan.h"
  5. #include "Display.h"
  6. extern MenuFunctions menu_function_obj;
  7. extern WiFiScan wifi_scan_obj;
  8. extern Display display_obj;
  9. class CommandLine {
  10. private:
  11. String getSerialInput();
  12. void parseCommand(String input);
  13. public:
  14. CommandLine();
  15. void RunSetup();
  16. void main(uint32_t currentTime);
  17. };
  18. #endif