Getting information about ESP32 WiFi station connected event.
ESP32 HTTPS server: Handling multiple routes
How to setup a HTTPS server on the ESP32, with multiple routes.
ESP32 Arduino: Get WiFi soft AP interface MAC address
The objective of this tutorial is to explain how to obtain the MAC address of the soft AP interface of the ESP32, using the Arduino core. The tests shown on this tutorial were performed using an ESP32 board from DFRobot. Introduction The objective of this tutorial is to explain how to obtain the MAC address of the …
Continue reading "ESP32 Arduino: Get WiFi soft AP interface MAC address"
ESP32 Arduino: Get WiFi station interface MAC address
In this tutorial we will check how to get the MAC address of the WiFi station interface of the ESP32, using the Arduino core. The tests shown on this tutorial were performed using an ESP32 board from DFRobot. Introduction In this tutorial we will check how to get the MAC address of the WiFi station …
Continue reading "ESP32 Arduino: Get WiFi station interface MAC address"
ESP32 Arduino: Getting station interface hostname
The tests from this tutorial were done using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this tutorial we will learn how to obtain the hostname of the ESP32, using the Arduino core. To test this functionality, we will first connect the ESP32 to a WiFi network and then obtain the hostname. After that, …
Continue reading "ESP32 Arduino: Getting station interface hostname"
ESP32 Arduino: Receiving a ping
In this tutorial we will check how to send a ping to a ESP32 connected to a WiFi network. The tests from this tutorial were done using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this tutorial we will check how to send a ping to a ESP32 connected to a WiFi network. We …
Micro:bit uPython: HTTP UART OBLOQ POST request to Flask server
In this tutorial we are going to learn how to send a HTTP POST request using a micro:bit board and a UART OBLOQ. Introduction In this tutorial we are going to learn how to send a HTTP POST request using a micro:bit board and a UART OBLOQ. We will be using MicroPython to program the …
Continue reading "Micro:bit uPython: HTTP UART OBLOQ POST request to Flask server"
ESP32 HTTP web server: Serving external JavaScript file
In this tutorial we will learn how to serve an external JavaScript file to be referenced by a HTML file, using the ESP32. The ESP32 will be running the Arduino core and 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 will …
Continue reading "ESP32 HTTP web server: Serving external JavaScript file"
ESP32 Async HTTP web server: websockets introduction
In this tutorial we will check how to setup a websocket endpoint on a HTTP web server, using the ESP32 and running the Arduino core. The tests were performed using a DFRobot’s ESP32 module integrated in a ESP32 development board. Introduction In this tutorial we will check how to setup a websocket endpoint on a HTTP web server, …
Continue reading "ESP32 Async HTTP web server: websockets introduction"
UART OBLOQ: Sending HTTP GET request
In this tutorial, we will check how to send a HTTP GET request from the UART OBLOQ. Introduction In this tutorial, we will check how to send a HTTP GET request from the UART OBLOQ. As a destination for our request, we will use a fake online REST API that is very useful for testing …