fbpixel
Communication between two ESP8266 with ESP-NOW

Communication between two ESP8266 with ESP-NOW

, In this tutorial, we’ll look at how to set up two ESP8266s for communication using the ESP-NOW protocol. The ESP8266 is a development board integrating Bluetooth and WiFi. It can therefore connect and exchange data with devices connected to the same network....
Program an ESP32 with MicroPython

Program an ESP32 with MicroPython

, , We have seen that the ESP32 NodeMCU is easily programmable using the Arduino IDE. We will see how to program it with MicroPython. The advantage of using Python to program an ESP32 is to use it to its full potential. Before following this tutorial, you must first...
Multitasking program with ESP32 and FreeRTOS

Multitasking program with ESP32 and FreeRTOS

, The NodeMCU ESP32 is based on the Xtensa 32-bit LX6 dual-core microprocessor that embeds the FreeRTOS OS. When using the Arduino IDE, the program runs by default on core 1. To multitask, it is interesting to use all the resources of the microprocessor. In this...
Communication between two ESP32 via WiFi

Communication between two ESP32 via WiFi

The NodeMCU ESP32 is a small microcontroller with a Wi-Fi chip. It is possible to establish a communication between two ESP32, when they are connected on the same network. In this tutorial, we will see a Master/Slave architecture, in which one ESP32 will play the role...