Category: Library

Integrating lan8720 with ESP32 Using Core 3 2

Integrating LAN8720 with ESP32 Using Core 3: Native Ethernet Protocol Support with SSL and Other Features

Integrating the LAN8720 Ethernet module with ESP32 using Core 3 brings native Ethernet protocol support, including SSL/TLS, enhancing wired network applications. This guide details the setup and highlights minimal changes from Core 2, noting that the RMII protocol is not supported on the ESP32-S3.

2

How to manage dynamic WIFI configuration on esp8266 or esp32

One most common need when you use IOT device with WIFI is the first connection attemp, It’s very tedious to hard code WIFI parameter, but a library allows you to connect your esp8266/esp32 to different Access Points (AP) without having to hard code and upload new code to your board. Additionally, you can also add custom parameters (variables) and manage multiple SSID connections with the WiFiManager library.

79

FTP server on esp8266 and esp32

For static information (Web pages for examples), that not change frequently, esp8266 or esp32 have internal SPIFFS (SPI Flash File System) and you can upload data via Arduino IDE as explained in the article “WeMos D1 mini (esp8266), integrated SPIFFS Filesystem” but for fast operation and future support It’s usefully use FTP.

PCF8574 i2c digital I/O expander - Basic I/O and interrupt 80

PCF8574 i2c digital I/O expander: Arduino, esp8266 and esp32, basic I/O and interrupt – Part 1

Library to use i2c pcf8574 IC with arduino and esp8266.

This IC can control (until 8) digital devices like button or led with 2 only pins.

Can read and write digital value with only 2 wire (perfect for ESP-01).

I try to simplify the use of this IC, with a minimal set of operation.