From f75b2774349c37b8b197c9add415d24e2ff476aa Mon Sep 17 00:00:00 2001 From: dangrain Date: Sat, 29 Mar 2025 00:44:47 +0100 Subject: [PATCH] Upload files to "/" --- README.md | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8b8f1ab --- /dev/null +++ b/README.md @@ -0,0 +1,52 @@ +# Usage tutorial + +For a most basic overview, you can always type `help` in the terminal, but not all commands are shown there due to memory restrictions. + +# General terminal commands + +`help` will display the help menu which will tell you about *most* commands. + +`echo` will print anything you write behind it right back to the terminal - Usage input: `echo `, output: `` + +`clear` will clear the terminal of any existing text on It, `clear` command doesn't take any arguments - Usage input: `clear` + +`format` will format any string(s) you write behind It - Usage `format("", "")`, output: ` ` + +`loop` will loop any command behind It for the specified amount of times - Usage `loop ` + +`calc` will calculate any two numbers specified and with the operation you specified - Usage `calc `, output: `` + + (And a secret command `cat`, which prints a cute little kitty to your terminal! :) prrr lol) + +# File manipulation commands + +`write` will write to a file - Usage input: `write `, takes `\n` as sign to move to a new line, useful for scripts! + +`read` will read from a file as long as It exists - Usage input: `read `, output: `` + +`ls` will list all existing files - Usage input: `ls`, output: `Files - ...` + +`delete` will delete the specified file as long as It exists - Usage input `delete ` + +# Hardware commands + +`high` will set the specified pin to high - Usage input: `high ` + +`low` will set the specified pin to low - Usage input: `low ` + +# G-Script run command + +`run` will run any G-Script files specified - Usage input: `run ` + +# G-Script usage + +G-Script is very simple and is a way of automating commands within files. Essentially It just bundles commands and executes them in the order that they were typed in. + +To let the system know that you are writing a G-Script file, It has to end with the .gs suffix. To run a G-Script file utilize the `run` command. + + + + + + +