diff --git a/esp8266/command.cpp b/esp8266/command.cpp
index 0122ce89..8f599e4d 100644
--- a/esp8266/command.cpp
+++ b/esp8266/command.cpp
@@ -95,6 +95,26 @@ void COMMAND::execute_command(int cmd,String cmd_params)
Serial.print("\r\n");
}
break;
+ case 999:
+ if (cmd_params=="ERROR")
+ {
+ web_interface->error_msg.clear();
+ }
+ else if (cmd_params=="INFO")
+ {
+ web_interface->info_msg.clear();
+ }
+ else if (cmd_params=="STATUS")
+ {
+ web_interface->status_msg.clear();
+ }
+ else if (cmd_params=="ALL")
+ {
+ web_interface->error_msg.clear();
+ web_interface->status_msg.clear();
+ web_interface->info_msg.clear();
+ }
+ break;
//default:
}
diff --git a/esp8266/data/printer.tpl b/esp8266/data/printer.tpl
index 1cdb574d..b61b32b7 100644
--- a/esp8266/data/printer.tpl
+++ b/esp8266/data/printer.tpl
@@ -37,9 +37,27 @@ $INCLUDE[header.inc]$
|
-
|
|
-
|
|
-
|
|
+
|
|
+
|
|
+
|
|
|
|
|
|