From 70e2f9baf6ca01a127c56abe02f4d600ad36312b Mon Sep 17 00:00:00 2001 From: dangrain Date: Wed, 26 Mar 2025 00:12:36 +0100 Subject: [PATCH] Bug fixes :) --- GrainOS.ino | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/GrainOS.ino b/GrainOS.ino index 000a360..516e77e 100644 --- a/GrainOS.ino +++ b/GrainOS.ino @@ -58,20 +58,17 @@ void deleteFile(String name) { void showHelp() { //I think this is fairly self explanatory, but still, making sure. It's just the guts of the `help` command Serial.println("Available commands:"); - Serial.println(" clear - Clears the screen"); //1 - Serial.println(" echo - Prints the message"); // 2 - Serial.println(" format(\"text,text,text\") - Formats input"); // 3 - Serial.println(" write - Writes content to a file"); // 4 - Serial.println(" read - Reads and prints the content of a file"); // 5 - Serial.println(" delete - Deletes a file"); // 6 - Serial.println(" ls - Lists all files"); // 7 - Serial.println(" help - Displays this help message"); // 8 - Serial.println(" calc - calculates command"); // 9 - Serial.println(" run - Runs a script file"); // 10 - Serial.println(" loop - Loops a command the inputted amount of times"); // 11 - Serial.println(" high - sets the inputted pin to high");// 12 - Serial.println(" low - sets the inputted pin to low"); //13 - + 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"); + Serial.println(" calc - calculates command"); + Serial.println(" run - Runs a script file"); + Serial.println(" loop - Loops a command the inputted amout of times"); } void calculate(String input) {