diff --git a/fifo-webui/command.php b/fifo-webui/command.php
index 8767574..6c3e644 100644
--- a/fifo-webui/command.php
+++ b/fifo-webui/command.php
@@ -16,6 +16,18 @@ switch ($_POST["cmd"]) {
case "cls":
fwrite($f, "CLS");
break;
+ case "on":
+ fwrite($f, "ON");
+ break;
+ case "off":
+ fwrite($f, "OFF");
+ break;
+ case "lcdon":
+ fwrite($f, "LCDON");
+ break;
+ case "lcdoff":
+ fwrite($f, "LCDOFF");
+ break;
case "line":
fwrite($f, "LINE ");
fwrite($f, $_POST["line"]);
diff --git a/fifo-webui/index.php b/fifo-webui/index.php
index b7193f0..bc50c7b 100644
--- a/fifo-webui/index.php
+++ b/fifo-webui/index.php
@@ -26,6 +26,26 @@ $Title = "MAPID-FIFO Web-UI";
+
+