arduino-esp32/libraries
2022-11-09 14:17:46 -03:00
..
ArduinoOTA Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
AsyncUDP Fixes INADDR_NONE (#6659) 2022-04-29 11:13:07 +03:00
BLE [BLE Client] Fix deadlock if connection loss ... (#7319) 2022-11-02 13:07:47 +02:00
BluetoothSerial BluetoothSerial : Re-set _isRemoteAddressSet to false if connect() fails. (#6728) 2022-05-27 12:20:43 +03:00
DNSServer Fixes DNS Server Memory Leak when deleted (#6707) 2022-05-09 15:59:24 +03:00
EEPROM remove _user_defined_size from EEPROM (#5775) 2021-10-25 09:15:47 +03:00
ESP32 Add touch sleep wakeup API (#7439) 2022-11-09 14:17:46 -03:00
ESPmDNS Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
Ethernet Adds DHCP Range Setup to APMode (#6731) 2022-05-16 20:58:02 +03:00
FFat NTP Examples: revert obsolete comment and updated Time example (#6073) 2022-01-17 16:09:58 +02:00
FS BUGFIX: FS read + speed improvements for SD (#6569) 2022-04-21 17:51:44 +03:00
HTTPClient Fixes Cookie Case Sensitivity (#7112) 2022-08-16 12:07:24 +02:00
HTTPUpdate NTP Examples: revert obsolete comment and updated Time example (#6073) 2022-01-17 16:09:58 +02:00
HTTPUpdateServer Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
I2S Added compiler.warning_flags to platform.txt; fixing #6118 (#6596) 2022-05-09 23:17:12 +03:00
LittleFS Added dont_mount option to conf initialization (#6953) 2022-07-15 14:50:02 +02:00
NetBIOS Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
Preferences Include nvs_commit() on three methods (#5309) 2021-08-23 21:23:42 +03:00
RainMaker Correct Spelling of addTemperatureParam in ESP Rainmaker (#7288) 2022-11-02 13:22:43 +02:00
SD reduce stack size requirement for this library by 4k my moving a buffer to heap. (#6745) 2022-05-27 12:21:24 +03:00
SD_MMC Added maxOpenFiles to SDMMC (#6912) 2022-06-25 16:30:40 +03:00
SimpleBLE Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
SPI Change SPI::transfer signature to match official Arduino API (#6734) 2022-05-13 13:19:47 +03:00
SPIFFS NTP Examples: revert obsolete comment and updated Time example (#6073) 2022-01-17 16:09:58 +02:00
Ticker Fix Ticker::Active crash if _ticker null (#6511) (#6513) 2022-04-04 14:45:14 +03:00
Update UpdateClass - speedup flash erase/writes (#7002) 2022-08-10 13:28:46 -03:00
USB Fix race condition with USBHID semaphore (#7205) 2022-09-17 08:05:25 +03:00
WebServer WebServer: rename & expose internal 'contentLength' variable for POST… (#7012) 2022-08-11 08:44:22 -03:00
WiFi WiFi Should Reconnect For Most Reasons (#7344) 2022-11-07 14:56:23 -03:00
WiFiClientSecure Updated warning message displayed when building as IDF component (#7220) 2022-09-14 11:42:55 +03:00
WiFiProv Added compiler.warning_flags to platform.txt; fixing #6118 (#6596) 2022-05-09 23:17:12 +03:00
Wire Adds default Wire1 pins auto-setup (#7034) 2022-08-01 09:58:54 -03:00
README.md Warns about SSP only available for ESP32 (#6455) 2022-03-28 11:43:10 +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
  • 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 WiFiClientSecure

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 WiFi driver (includes Ethernet driver)

WiFiClientSecure

Arduino compatible WiFi client object using embedded encryption

Wire

Arduino compatible I2C driver