Add Touch base code for calibration

Add [ESP214] and [ESP215]
Fix Telnet not getting commands
Fix HTTP and Telnet not taking start condition
Add code base for input
Increase EEPROM size from 1024 to 2048 as now we are at 1003 for future next setting
Fix display for ILI9341 for main page
Change version for tracking
This commit is contained in:
Luc
2019-04-07 16:57:33 +02:00
parent 6f5d87a927
commit 688b8a079a
19 changed files with 641 additions and 175 deletions

View File

@@ -116,6 +116,9 @@ bool HTTP_Server::begin()
{
bool no_error = true;
end();
if (Settings_ESP3D::read_byte(ESP_HTTP_ON) !=1) {
return no_error;
}
_port = Settings_ESP3D::read_uint32(ESP_HTTP_PORT);
_webserver= new WEBSERVER(_port);
if (!_webserver) {