Controlling a relay remotely via HTTP using the ESP32.
ESP32 Arduino web server: getting client IP
The objective of this post is to explain how to obtain the IP of a client that contacts a HTTP web server running on the ESP32, on the Arduino core. The tests of this ESP32 tutorial were performed using a DFRobot’s ESP-WROOM-32 device integrated in a ESP32 FireBeetle board. Introduction The objective of this post is to explain how …
Continue reading "ESP32 Arduino web server: getting client IP"
ESP32 HTTP server: Multiple methods allowed on same route
The objective of this post is to explain how we can allow multiple HTTP methods on the same route of an async HTTP web server running on the ESP32, using the Arduino core. The tests of this tutorial were performed using a DFRobot’s ESP-WROOM-32 device integrated in a ESP32 FireBeetle board. Introduction The objective of this post is to explain …
Continue reading "ESP32 HTTP server: Multiple methods allowed on same route"
ESP32 Arduino async server: Controlling HTTP methods allowed
In this ESP32 tutorial, we will check how to control the HTTP methods allowed for requests made to routes of the HTTP async web server. The tests of this ESP32 tutorial were performed using a DFRobot’s ESP-WROOM-32 device integrated in a ESP32 FireBeetle board. Introduction In this ESP32 tutorial, we will check how to control the HTTP methods allowed …
Continue reading "ESP32 Arduino async server: Controlling HTTP methods allowed"
ESP32 Arduino: HTTPS GET Request
The objective of this post is to explain how to perform a GET request over HTTPS using the Arduino core on the ESP32. The tests of this ESP32 tutorial were performed using a DFRobot’s ESP-WROOM-32 device integrated in a ESP32 FireBeetle board. Introduction The objective of this post is to explain how to perform a GET request over HTTPS using …
LinkIt Smart Duo: Installing and testing the Requests library for Python
The objective of this post is to explain how to install the Python Requests library on the LinkIt Smart 7688 Duo and perform a simple test. Introduction The objective of this post is to explain how to install the Python Requests library on the LinkIt Smart 7688 Duo and perform a simple test. The Requests …
Continue reading "LinkIt Smart Duo: Installing and testing the Requests library for Python"
Flask: Controlling HTTP methods allowed
The objective of this post is to explain how control the allowed HTTP methods on the URLs specified for a Flask web server. Introduction The objective of this post is to explain how control the allowed HTTP methods on the URLs specified for a Flask web server. Flask is a web micro framework for Python …
Python: Parsing JSON
The objective of this post is to explain how to parse the response of a HTTP request which is in JSON format. Introduction The objective of this post is to explain how to parse the response of a HTTP GET request which is in JSON format. We will use the Requests library to perform the request …
ESP8266 Webserver: Receiving GET requests from Python
The objective of this post is to explain how to make a Python application talk with a ESP8266 by sending HTTP GET Requests to a HTTP web server running on the microcontroller. Introduction The objective of this post is to explain how to make a Python application talk with a ESP8266 by sending HTTP GET Requests …
Continue reading "ESP8266 Webserver: Receiving GET requests from Python"
Python: HTTP GET requests
The objective of this post is to explain how to do HTTP GET requests using Python and the Requests library. Introduction The objective of this post is to explain how to do HTTP GET requests using Python and the Requests library. The simplest way to install this library is by using pip, as can be …