Search found 1 match
- Tue Jan 03, 2023 8:37 am
- Forum: General Discussion
- Topic: need help on esp32 server hosting an application consisting of several html files
- Replies: 2
- Views: 1260
Re: need help on esp32 server hosting an application consisting of several html files
You can us ethe following fucnction to handle the request and send the required file to it, server.on("style.css", HTTP_GET, [](AsyncWebServerRequest *request){ request->send(SPIFFS, "style.css", "text/css"); }); I am also working on ESP32- WROOM -32D , for WIFI+ BLE , both working at the same time ...