In this post we are going to learn how to receive messages sent from the WebSerial UI, on the ESP32.
ESP32 Arduino HTTP server: Serving image as attachment
How to serve an image as attachment from a HTTP web server running on the ESP32.
ESP32 HTTPS server: Handling route not found
How to handle route not found requests on a HTTPS server hosted on the ESP32.
ESP32 HTTPS server: Specifying HTTP response status code
How to specify the HTTP status code to be returned to clients from the routes of a HTTPS server hosted on the ESP32.
ESP32 HTTPS server: Handling multiple routes
How to setup a HTTPS server on the ESP32, with multiple routes.
ESP32: HTTPS web server
How to setup a HTTPS web server on the ESP32, using the Arduino core and an additional library.
ESP32 HTTP web server: Handling body data
In this tutorial we will learn how to handle the body of a HTTP POST request, sent to a HTTP web server running on the ESP32. The tests were performed using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this tutorial we will learn how to handle the body of a HTTP POST request, …
Continue reading "ESP32 HTTP web server: Handling body data"
ESP32 web server: template processing when serving HTML from file system
In this tutorial we will learn how to use placeholders to replace values at run time in a HTML file served from the ESP32 file system. We will be using the ESP32 async web server library and the Arduino core. The tests shown here were performed using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In …
Continue reading "ESP32 web server: template processing when serving HTML from file system"
ESP32 Arduino web server: Serving external CSS file
In this tutorial we will check how to serve an external CSS file, to be included by an HTML file. This will be implemented on the ESP32 running the Arduino core and using the HTTP async web server libraries. The tests were performed using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this tutorial we …
Continue reading "ESP32 Arduino web server: Serving external CSS file"
ESP32 Arduino web server: Receiving data from JavaScript websocket client
In this tutorial we will check how to setup a HTTP web server on the ESP32 that will have a websocket endpoint and that will serve a HTML file containing JavaScript code to establish a websocket connection to the server. The tests were performed using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this …
Continue reading "ESP32 Arduino web server: Receiving data from JavaScript websocket client"