mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2025-12-22 23:26:45 -08:00
Add some command line stuff
This commit is contained in:
24
esp32_marauder/CommandLine.h
Normal file
24
esp32_marauder/CommandLine.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef CommandLine_h
|
||||
#define CommandLine_h
|
||||
|
||||
#include "MenuFunctions.h"
|
||||
#include "WiFiScan.h"
|
||||
#include "Display.h"
|
||||
|
||||
extern MenuFunctions menu_function_obj;
|
||||
extern WiFiScan wifi_scan_obj;
|
||||
extern Display display_obj;
|
||||
|
||||
class CommandLine {
|
||||
private:
|
||||
String getSerialInput();
|
||||
void parseCommand(String input);
|
||||
|
||||
public:
|
||||
CommandLine();
|
||||
|
||||
void RunSetup();
|
||||
void main(uint32_t currentTime);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user