docs
This commit is contained in:
@@ -766,8 +766,6 @@ void setup()
|
||||
server.on("/", HTTP_GET, [](AsyncWebServerRequest *request)
|
||||
{
|
||||
webrequestActive = true;
|
||||
deactivateRFID();
|
||||
activateSD();
|
||||
String htmlPath = "/system/index.html";
|
||||
if (SD.exists(htmlPath)) {
|
||||
AsyncWebServerResponse *response = request->beginResponse(SD, htmlPath, "text/html", false, processor);
|
||||
@@ -784,8 +782,6 @@ void setup()
|
||||
server.on("/style.css", HTTP_GET, [](AsyncWebServerRequest *request)
|
||||
{
|
||||
webrequestActive = true;
|
||||
deactivateRFID();
|
||||
activateSD();
|
||||
String cssPath = "/system/style.css";
|
||||
if (SD.exists(cssPath)) {
|
||||
request->send(SD, cssPath, "text/css");
|
||||
|
||||
Reference in New Issue
Block a user