summaryrefslogtreecommitdiff
path: root/mesecons_luacontroller/help/terminal.txt
diff options
context:
space:
mode:
Diffstat (limited to 'mesecons_luacontroller/help/terminal.txt')
-rw-r--r--mesecons_luacontroller/help/terminal.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/mesecons_luacontroller/help/terminal.txt b/mesecons_luacontroller/help/terminal.txt
new file mode 100644
index 0000000..9b23eed
--- /dev/null
+++ b/mesecons_luacontroller/help/terminal.txt
@@ -0,0 +1,18 @@
+Terminal I/O
+============
+
+Simple text I/O is available on the "terminal" tab.
+
+To send text to the Luacontroller, enter the message into the field provided, then press enter or click the send button.
+An event will occur containing the text entered.
+Example:
+{
+ type = "terminal",
+ text = "apt moo"
+}
+
+To display a message on the terminal, use the print() function.
+Example:
+print("Have you mooed today?")
+
+Errors and warnings are also displayed on the terminal.