Category: Tutorial

ESP32 self OTA: update on HTTPS (SSL/TLS) with trusted self signed certificate 4

ESP32 self OTA update in HTTPS (SSL/TLS) with trusted self-signed certificate – 3

We are going to continue exploring OTA updates. In this article, we delve into secure self OTA updates for ESP32 devices using HTTPS (SSL/TLS) with trusted self-signed certificates. Learn how to generate certificates, set up the ESP32, and configure the update server for enhanced security and efficiency in your IoT projects.

ESP32 self OTA update: firmware from a server with version check 5

ESP32 self OTA update firmware from a server with version check – 2

In this article, we’ll explore an efficient method for implementing self Over-the-Air (OTA) firmware updates for the ESP32 microcontroller, complete with version checking. This approach enables IoT devices to automatically download and install the latest updates from a server, ensuring a resilient and adaptable IoT ecosystem without requiring manual intervention.

BNO055 for esp32, esp8266, and Arduino: Gyroscope High Rate and Any Motion Interrupt 0

BNO055 for esp32, esp8266, and Arduino: Gyroscope High Rate and Any Motion Interrupt – 6

This latest article in the series explores how to use the BNO055 sensor with ESP32, ESP8266, and Arduino to achieve gyroscope high rate and any motion interrupt. The BNO055 sensor combines an accelerometer, magnetometer, and gyroscope in one module, making it ideal for accurate orientation tracking.

BNO055 for esp32, esp8266 and Arduino: enable INT pin and accelerometer High G Interrupt 0

BNO055 for esp32, esp8266 and Arduino: enable INT pin and accelerometer High G Interrupt – 5

Continue the series of article about the Bosch sensor BNO055. In this part of the tutorial, we will learn how to enable the INT pin of the BNO055 and configure the accelerometer High G Interrupt. The High G Interrupt is triggered when the accelerometer detects a sudden acceleration event that exceeds a specified threshold and duration. This can be useful for detecting impacts, falls, or other sudden movements in a variety of applications.

ESP32 self OTA: update firmware from server 6

ESP32 self OTA update firmware from server – 1

This article discusses how the ESP32 can perform self-OTA updates of its firmware from a server, allowing you to remotely update the firmware of an ESP32-based device without having to physically access the device. To do this, you need to set up a server that hosts the new firmware image and add OTA support to your ESP32 firmware. By implementing self-OTA updates, you can ensure your devices are running the latest firmware without having to physically access them.

ESP32 OTA update with Web Browser: custom web interface 0

ESP32 OTA update with Web Browser: custom web interface – 3

This tutorial explores how to implement OTA updates on an ESP32 using a web browser as a custom interface. We will create a custom web interface using HTML and JavaScript to upload firmware files to the ESP32, and then use the ESP32’s OTA update feature to install the new firmware. By the end of this tutorial, you should have a solid understanding of how to use OTA updates to keep your ESP32 devices up-to-date with the latest firmware.

ESP32 OTA update with Web Browser: HTTPS (SSL/TLS) and self signed certificate 0

ESP32 OTA update with Web Browser: upload in HTTPS (SSL/TLS) with self-signed certificate – 2

In this article, we will explore how to perform OTA updates on the ESP32 using a web browser and HTTPS protocol with a self-signed certificate. HTTPS provides a secure way to transfer data over the internet and is essential for any OTA update process that involves sensitive information. A self-signed certificate can be used to provide encryption and authentication without the need for a third-party certificate authority, making it a cost-effective solution for small-scale projects. By the end of this article, you will have a working OTA update process for your ESP32 project that uses HTTPS protocol and a self-signed certificate.

ESP32 OTA update with Web Browser: firmware, filesystem, and authentication 6

ESP32 OTA update with Web Browser: firmware, filesystem and authentication – 1

In this article series, we will explore how to perform an OTA update on the ESP32 microcontroller using a web browser with and without basic authentication. We will cover firmware update, filesystem update, and authentication, providing practical examples and code snippets along the way.

ESP32 OTA update with Arduino IDE: filesystem, firmware and password 0

ESP32 OTA update with Arduino IDE: filesystem, firmware, and password

One of the most important features of the ESP32 is the ability to perform over-the-air (OTA) updates, which allows developers to remotely update the firmware of the device without the need for physical access.

In this article, we will explore how to perform an OTA update on an ESP32 using the Arduino IDE. We will cover the entire process, including updating the filesystem and firmware, as well as securing the OTA update with a password.

ESP32: compiled binary (.hex) with command line and GUI tool 3

ESP32: flash compiled firmware and filesystem (.bin) with GUI tools – 2

The ESP32 boasts a crucial capability that streamlines the sharing of firmware, which most manufacturers widely utilize. This capability involves creating a pre-compiled binary file containing the sketch portion (or filesystem). In this article, we will create a binary file for the filesystem and proceed to flash the ESP32 using the Espressif Download Tool.