Added calc
command that does math.
Added `calc` command - usage `calc <number> <operand> <number>`
This commit is contained in:
parent
4bc546567c
commit
d0429a9bc7
1 changed files with 46 additions and 1 deletions
47
GrainOS.ino
47
GrainOS.ino
|
@ -56,7 +56,7 @@ void deleteFile(String name) {
|
||||||
Serial.println("Error: File not found!"); // WAH WAH WAH
|
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("Available commands:");
|
||||||
Serial.println(" clear - Clears the screen");
|
Serial.println(" clear - Clears the screen");
|
||||||
Serial.println(" echo <message> - Prints the message");
|
Serial.println(" echo <message> - Prints the message");
|
||||||
|
@ -66,6 +66,48 @@ void showHelp() {
|
||||||
Serial.println(" delete <filename> - Deletes a file");
|
Serial.println(" delete <filename> - Deletes a file");
|
||||||
Serial.println(" ls - Lists all files");
|
Serial.println(" ls - Lists all files");
|
||||||
Serial.println(" help - Displays this help message");
|
Serial.println(" help - Displays this help message");
|
||||||
|
Serial.println(" calc <number> <operator> <number> - 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 <number> <operator> <number>");
|
||||||
|
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() {
|
void setup() {
|
||||||
|
@ -115,6 +157,9 @@ void loop() {
|
||||||
else if (input == "help") { // help command
|
else if (input == "help") { // help command
|
||||||
showHelp();
|
showHelp();
|
||||||
}
|
}
|
||||||
|
else if (input.startsWith("calc ")) {
|
||||||
|
calculate(input.substring(5));
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
Serial.println("Unknown command. Use 'help' to get a list of commands");
|
Serial.println("Unknown command. Use 'help' to get a list of commands");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue