diff --git a/GrainOS.ino b/GrainOS.ino index 29bfb09..b19eb60 100644 --- a/GrainOS.ino +++ b/GrainOS.ino @@ -7,14 +7,12 @@ struct File { const int MAX_FILES = 10; //file limit File files[MAX_FILES]; - void clearScreen() { for (int i = 0; i < 50; i++) { Serial.println(); //function that clears your screen (again this is stupid) } } - void listFiles() { Serial.println("Files:"); for (int i = 0; i < MAX_FILES; i++) { @@ -24,7 +22,6 @@ void listFiles() { } } - void writeFile(String name, String content) { for (int i = 0; i < MAX_FILES; i++) { if (!files[i].used) { @@ -48,7 +45,6 @@ void readFile(String name) { Serial.println("Error: File not found!"); } - void deleteFile(String name) { for (int i = 0; i < MAX_FILES; i++) { if (files[i].used && files[i].name == name) { @@ -60,6 +56,18 @@ void deleteFile(String name) { Serial.println("Error: File not found!"); // WAH WAH WAH } +void showHelp() { + Serial.println("Available commands:"); + Serial.println(" clear - Clears the screen"); + Serial.println(" echo - Prints the message"); + Serial.println(" format(\"text,text,text\") - Formats input"); + Serial.println(" write - Writes content to a file"); + Serial.println(" read - Reads and prints the content of a file"); + Serial.println(" delete - Deletes a file"); + Serial.println(" ls - Lists all files"); + Serial.println(" help - Displays this help message"); +} + void setup() { Serial.begin(9600); } @@ -74,7 +82,6 @@ void loop() { } else if (input.startsWith("echo ")) { String message = input.substring(5); // It's just echo with less functionality - message.trim(); Serial.println(message); } @@ -105,8 +112,11 @@ void loop() { else if (input == "ls") { //list files (currently directories don't exist (and let's be real probably won't)) listFiles(); } + else if (input == "help") { // help command + showHelp(); + } else { - Serial.println("Unknown command."); + Serial.println("Unknown command. Use 'help' to get a list of commands"); } } }