1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-09-01 02:21:46 +02:00

Add multi axis support for webUI

This commit is contained in:
Luc
2019-08-29 14:44:27 +02:00
parent 06505fed7c
commit 360c231281
2 changed files with 5 additions and 2 deletions

View File

@@ -1983,10 +1983,13 @@ bool COMMANDS::execute_internal_command (int cmd, String cmd_params, level_authe
resp += " # webcommunication: Sync: ";
resp += String(web_server.port() + 1);
#endif
resp += "# hostname:";
resp += " # hostname:";
resp += wifi_config.Hostname();
if (WiFi.getMode() == WIFI_AP)resp += "(AP mode)";
#endif
//to save time in decoding `?`
resp += " # axis:";
resp += String(N_AXIS);
if (espresponse)espresponse->println (resp.c_str());
}
break;

View File

@@ -20,7 +20,7 @@
// Grbl versioning system
#define GRBL_VERSION "1.1f"
#define GRBL_VERSION_BUILD "20190828"
#define GRBL_VERSION_BUILD "20190829"
//#include <sdkconfig.h>
#include <Arduino.h>