diff --git a/esp-link/main.c b/esp-link/main.c index 1744bd0..8c00bae 100644 --- a/esp-link/main.c +++ b/esp-link/main.c @@ -57,6 +57,7 @@ HttpdBuiltInUrl builtInUrls[] = { { "/console/reset", ajaxConsoleReset, NULL }, { "/console/baud", ajaxConsoleBaud, NULL }, { "/console/text", ajaxConsole, NULL }, + { "/console/send", ajaxConsoleSend, NULL }, //Enable the line below to protect the WiFi configuration with an username/password combo. // {"/wifi/*", authBasic, myPassFn}, { "/wifi", cgiRedirect, "/wifi/wifi.html" }, diff --git a/html/console.html b/html/console.html index 9dc359c..201f82a 100644 --- a/html/console.html +++ b/html/console.html @@ -13,6 +13,23 @@
+ + + + +Type the command and press ENTER. + Press ESC to clear the entry. + The UP/DOWN arrow keys can be used to get previously sent commands from history. +