arduino-esp32/libraries
2024-09-13 10:50:06 +03:00
..
ArduinoOTA fix(spelling): Fix misspellings detected by codespell and enable it (#10232) 2024-08-28 15:43:02 +03:00
AsyncUDP fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
BLE docs(vale): Enable vale and fix errors (#10231) 2024-08-28 15:48:18 +03:00
BluetoothSerial fix(spelling): Fix misspellings detected by codespell and enable it (#10232) 2024-08-28 15:43:02 +03:00
DNSServer fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
EEPROM docs(vale): Enable vale and fix errors (#10231) 2024-08-28 15:48:18 +03:00
ESP32 feat(pre-commit): Add JSON formatter to pre-commit hooks (#10324) 2024-09-11 15:18:03 +03:00
ESP_I2S fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
ESP_NOW fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
ESP_SR feat(pre-commit): Add JSON formatter to pre-commit hooks (#10324) 2024-09-11 15:18:03 +03:00
ESPmDNS fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
Ethernet fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
FFat fix(littlefs): Use VFSImpl::exists() to avoid false error log (#10217) 2024-08-30 18:01:23 +03:00
FS fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
HTTPClient fix(http): Replace flush() with clear() in HTTPClient (#10269) 2024-08-31 18:28:22 +03:00
HTTPUpdate fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
HTTPUpdateServer fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
Insights fix(example): Fix compilation warnings in examples (#10311) 2024-09-10 16:25:18 +03:00
LittleFS fix(littlefs): Use VFSImpl::exists() to avoid false error log (#10217) 2024-08-30 18:01:23 +03:00
NetBIOS fix(spelling): Fix misspellings detected by codespell and enable it (#10232) 2024-08-28 15:43:02 +03:00
Network NetworkClientRxBuffer::clear() may not always clear (#10288) (#10331) 2024-09-13 10:50:06 +03:00
NetworkClientSecure docs(vale): Enable vale and fix errors (#10231) 2024-08-28 15:48:18 +03:00
OpenThread feat(pre-commit): Add JSON formatter to pre-commit hooks (#10324) 2024-09-11 15:18:03 +03:00
PPP fix(ppp): Fix PPP not working after reboot if no RST (#10264) 2024-08-30 18:03:56 +03:00
Preferences fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
RainMaker docs(vale): Enable vale and fix errors (#10231) 2024-08-28 15:48:18 +03:00
SD docs(vale): Enable vale and fix errors (#10231) 2024-08-28 15:48:18 +03:00
SD_MMC feat(pre-commit): Add JSON formatter to pre-commit hooks (#10324) 2024-09-11 15:18:03 +03:00
SimpleBLE fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
SPI fix(spelling): Fix misspellings detected by codespell and enable it (#10232) 2024-08-28 15:43:02 +03:00
SPIFFS fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
TFLiteMicro fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
Ticker fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
Update fix(example): Fix compilation warnings in examples (#10311) 2024-09-10 16:25:18 +03:00
USB fix(example): Fix compilation warnings in examples (#10311) 2024-09-10 16:25:18 +03:00
WebServer fix(example): Fix compilation warnings in examples (#10311) 2024-09-10 16:25:18 +03:00
WiFi fix(scan): Make sure that we do not leak memory if reading the APs fails (#10312) 2024-09-10 16:18:48 +03:00
WiFiProv docs(vale): Enable vale and fix errors (#10231) 2024-08-28 15:48:18 +03:00
Wire fix(core): Update versions to 3.0.4 (#10106) 2024-08-02 12:18:35 +03:00
README.md docs(vale): Enable vale and fix errors (#10231) 2024-08-28 15:48:18 +03: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)

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