arduino-esp32/libraries
2025-06-24 14:43:05 +03:00
..
ArduinoOTA Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
AsyncUDP fix(libraries/asyncudp): IPv4 ONLY listenMulticast() (#11444) 2025-06-10 11:55:43 +03:00
BLE fix: BLEAdvertising methods return error codes (#11154) 2025-03-27 12:35:19 +02:00
BluetoothSerial Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
DNSServer Proper EDNS handling and cleaner NOERROR response in DNSSERVER (#11411) 2025-06-20 12:52:21 +03:00
EEPROM Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
ESP32 feat(LEDC): Add Gamma Fade support and enhance auto channel/timer selection for multi-group (#11464) 2025-06-16 14:44:11 +03:00
ESP_I2S Fix(I2S example): make fix to the ESP32 I2S simple tone example (#10954) 2025-06-10 13:27:47 +03:00
ESP_NOW fix(esp_now): Fix broadcast example and use nullptr (#11490) 2025-06-23 14:48:37 +03:00
ESP_SR fix: crash on watchdog timeout on iddle task (#11376) 2025-05-27 13:15:41 +03:00
ESPmDNS Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
Ethernet fix(eth): Set the ETH properties at the correct time (#11182) 2025-03-27 12:29:31 +02:00
FFat Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
FS Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
HTTPClient Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
HTTPUpdate Support HTTP 204 (#11408) 2025-06-04 17:39:19 +03:00
HTTPUpdateServer Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
Insights Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
LittleFS Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
Matter feat(matter): Adds Matter Events callback plus example (#11465) 2025-06-20 15:28:07 -03:00
NetBIOS Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
Network fix(network): fixes a macro name conflict warning (#11068) 2025-03-10 22:18:12 +02:00
NetworkClientSecure feat(ssl): Do not check if client is connected if already disconnected (#11356) 2025-05-27 16:51:23 +03:00
OpenThread feat(openthread): Add RLOC16 in otPrintNetworkInformation() (#11480) 2025-06-18 14:55:11 -03:00
PPP fix(net): Use network_event_handle_t for internal callbacks (#11179) 2025-03-27 12:29:11 +02:00
Preferences Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
RainMaker IDF release/v5.4 (#11149) 2025-03-28 10:37:48 +02:00
SD fix(spi): Update spi bus for esp32s2 (#11510) 2025-06-24 14:43:05 +03:00
SD_MMC Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
SimpleBLE Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
SPI fix(spi): Update spi bus for esp32s2 (#11510) 2025-06-24 14:43:05 +03:00
SPIFFS Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
TFLiteMicro Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
Ticker Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
Update Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
USB ci(pre-commit): Lock versions to SHA and apply fixes (#11248) 2025-04-22 09:16:32 +03:00
WebServer Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
WiFi feat(ap): Add support for DHCP Captive Portal (opt 114) (#11412) 2025-06-04 17:39:34 +03:00
WiFiProv Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
Wire Update core version to 3.2.0 2025-02-18 19:10:54 +02:00
Zigbee feat(zigbee): Support min/max setting for Analog EP (#11451) 2025-06-10 11:31:17 +03:00
README.md Update README.md to add ESP-SR (#10925) 2025-02-04 11:24:49 +02:00

ESP32 Libraries

arduino-esp32 includes libraries for Arduino compatibility along with some object wrappers around hardware specific devices. Examples are included in the examples folder under each library folder. The ESP32 includes additional examples which need no special drivers.

ArduinoOTA

Over The Air firmware update daemon. Use espota.py to upload to the device.

AsyncUDP

Asynchronous task driven UDP datagram client/server

BLE

Bluetooth Low Energy v4.2 client/server framework

BluetoothSerial

Serial to Bluetooth redirection server
Note: This library depends on Bluetooth Classic which is only available for ESP32
(Bluetoothserial is not available for ESP32-S2, ESP32-C3, ESP32-S3).

DNSServer

A basic UDP DNS daemon (includes captive portal demo)

EEPROM

Arduino compatibility for EEPROM (using flash)

ESP32

Additional examples

  • AnalogOut
  • Camera
  • ChipID
  • DeepSleep
  • ESPNow
  • FreeRTOS
  • GPIO
  • HallSensor
  • I2S
  • MacAddress
  • ResetReason
  • RMT
  • Time
  • Timer
  • Touch

ESPmDNS

mDNS service advertising

Ethernet

Ethernet networking

FFat

FAT indexed filesystem on SPI flash

FS

Filesystem virtualization framework

HTTPClient

A simple HTTP client, compatible with NetworkClientSecure

HTTPUpdate

Download a firmware update from HTTPd and apply it using Update

HTTPUpdateServer

Upload a firmware for the update from HTTPd

LittleFS

LittleFS (File System)

NetBIOS

NetBIOS name advertiser

Preferences

Flash keystore using ESP32 NVS

ESP RainMaker

End-to-end platform by Espressif that enables Makers to realize their IoT ideas faster

SD

Secure Digital card filesystem using SPI access

SD_MMC

Secure Digital card filesystem using 4-lane access

SimpleBLE

Minimal BLE advertiser

SPI

Arduino compatible Serial Peripheral Interface driver (master only)

SPIFFS

SPI Flash Filesystem (see spiffs-plugin to upload to device)

SR

ESP-SR helps users build AI speech solutions based on ESP32-S3 or ESP32-P4 chips

Ticker

A timer to call functions on an interval

Update

Sketch Update using ESP32 OTA functionality

USB

Universal Serial Bus driver (device only)

WebServer

A simple HTTP daemon

WiFi

Arduino compatible Wi-Fi driver

NetworkClientSecure

Arduino compatible Wi-Fi client object using embedded encryption

Wire

Arduino compatible I2C driver