commit de78f3cf544b089905c9ff3e89718fa3e9d078a8 Author: dangrain Date: Mon Mar 24 19:33:22 2025 +0100 Upload files to "/" diff --git a/GrainOS.ino b/GrainOS.ino new file mode 100644 index 0000000..8fe5a58 --- /dev/null +++ b/GrainOS.ino @@ -0,0 +1,33 @@ +void setup() { + Serial.begin(9600); + bool Userregistered = false; +} + +void loop() { + if (Serial.available()) { + String input = Serial.readStringUntil('\n'); + input.trim(); + + if (input == "clear") { + for (int i = 0; i < 50; i++) { + Serial.println(); // very, very, VERY scuffed clear command. Adds 50 blank likes to the 'terminal' + } + } + else if (input.startsWith("echo")) { + String message = input.substring(5); //simple echo command (absolutely stolen from linux and made even more scuffed!) + message.trim(); + + if (message.length() > 0) { + Serial.println(message); + } + } + else if (input.startsWith("format(")) { + if (input.endsWith(")")) { + input = input.substring(7, input.length() - 1); + input.replace("\"", ""); + input.replace(",", " "); + Serial.println(input); //Happy, Yasmina? + } + } + } +}