From d0429a9bc7eb4e8c7a4f8b50e3bfa68dd210d36c Mon Sep 17 00:00:00 2001 From: dangrain Date: Tue, 25 Mar 2025 13:00:45 +0100 Subject: [PATCH] Added `calc` command that does math. Added `calc` command - usage `calc ` --- GrainOS.ino | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/GrainOS.ino b/GrainOS.ino index b19eb60..49d89da 100644 --- a/GrainOS.ino +++ b/GrainOS.ino @@ -56,7 +56,7 @@ void deleteFile(String name) { Serial.println("Error: File not found!"); // WAH WAH WAH } -void showHelp() { +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"); Serial.println(" echo - Prints the message"); @@ -66,6 +66,48 @@ void showHelp() { Serial.println(" delete - Deletes a file"); Serial.println(" ls - Lists all files"); Serial.println(" help - Displays this help message"); + Serial.println(" calc - calculates command"); +} + +void calculate(String input) { + int firstSpace = input.indexOf(' '); + int secondSpace = input.indexOf(' ', firstSpace + 1); // this is likely not the best way to do this as It takes up a *lot* of space, but hey. It works. I'll see If I keep It. + + if (firstSpace == -1 || secondSpace == -1) { + Serial.println("Usage: calc "); + return; + } + + String num1Str = input.substring(0, firstSpace); + String op = input.substring(firstSpace + 1, secondSpace); + String num2Str = input.substring(secondSpace + 1); + + float num1 = num1Str.toFloat(); + float num2 = num2Str.toFloat(); + float result; + + if (op == "+") { + result = num1 + num2; + } + else if (op == "-") { + result = num1 - num2; + } + else if (op == "*") { + result = num1 * num2; + } + else if (op == "/") { + if (num2 == 0) { + Serial.println("Error: Division by zero"); + return; + } + result = num1 / num2; + } + else { + Serial.println("Error: Unknown operator. Use +, -, *, or /"); + return; + } + + Serial.println(String(result)); } void setup() { @@ -115,6 +157,9 @@ void loop() { else if (input == "help") { // help command showHelp(); } + else if (input.startsWith("calc ")) { + calculate(input.substring(5)); + } else { Serial.println("Unknown command. Use 'help' to get a list of commands"); }