arduino-esp32/libraries
Juraj Andrássy 990e3d5b43
WiFiServer - deprecate available(), use accept() everywhere (#8860)
esp8266 and esp32 server.available() is not implemented as documented
it is implemented like server.accept() is documented by Arduino

Co-authored-by: Rodrigo Garcia <rodrigo.garcia@espressif.com>
2023-11-27 14:51:59 +02:00
..
ArduinoOTA Update/upgrade OTAWebUpdater.ino example (#8839) 2023-11-10 01:27:38 +02:00
AsyncUDP ESP-IDF v5.1 (#7733) 2023-10-05 14:54:25 +03:00
BLE sets BLEScanResults by reference (#8759) 2023-10-16 23:46:43 +03:00
BluetoothSerial Increase BT SPP task priority (#8859) 2023-11-09 23:15:50 +02:00
DNSServer ESP-IDF v5.1 (#7733) 2023-10-05 14:54:25 +03:00
EEPROM ESP-IDF v5.1 (#7733) 2023-10-05 14:54:25 +03:00
ESP32 Add ESP32-C2 support (#8881) 2023-11-21 15:16:47 +02:00
ESP_I2S Extend bus types and structure for Peripheral Manager (#8888) 2023-11-25 21:26:03 +02:00
ESP_SR [I2S][SR] Add new I2S library and Sound Recognition support (#8714) 2023-10-18 12:05:26 +03:00
ESPmDNS WiFiServer - deprecate available(), use accept() everywhere (#8860) 2023-11-27 14:51:59 +02:00
Ethernet Extend bus types and structure for Peripheral Manager (#8888) 2023-11-25 21:26:03 +02:00
FFat ESP-IDF v5.1 (#7733) 2023-10-05 14:54:25 +03:00
FS Fix linker failure when using SPIFFS or LittleFS with Arduino as component. (#8768) 2023-10-17 13:22:42 +03:00
HTTPClient IDF release/v5.1 (#8758) 2023-10-12 10:05:50 +03:00
HTTPUpdate ESP-IDF v5.1 (#7733) 2023-10-05 14:54:25 +03:00
HTTPUpdateServer ESP-IDF v5.1 (#7733) 2023-10-05 14:54:25 +03:00
Insights ESP-IDF v5.1 (#7733) 2023-10-05 14:54:25 +03:00
LittleFS provide grow_on_mount feature (#8769) 2023-10-16 23:42:40 +03:00
NetBIOS ESP-IDF v5.1 (#7733) 2023-10-05 14:54:25 +03:00
Preferences Include nvs_commit() on three methods (#5309) 2021-08-23 21:23:42 +03:00
RainMaker IDF release/v5.1 (#8865) 2023-11-10 21:40:14 +02:00
SD Extend bus types and structure for Peripheral Manager (#8888) 2023-11-25 21:26:03 +02:00
SD_MMC Extend bus types and structure for Peripheral Manager (#8888) 2023-11-25 21:26:03 +02:00
SimpleBLE Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
SPI Add ESP32-C2 support (#8881) 2023-11-21 15:16:47 +02:00
SPIFFS ESP-IDF v5.1 (#7733) 2023-10-05 14:54:25 +03:00
TFLiteMicro Add TFLite Micro examples (#8717) 2023-10-06 13:50:53 +03:00
Ticker Ticker fix solving #6155 (#7664) 2023-02-06 17:25:58 +02:00
Update Update/upgrade OTAWebUpdater.ino example (#8839) 2023-11-10 01:27:38 +02:00
USB Added KEY_SPACE to USBHIDKeyboard.h (#8920) 2023-11-27 11:16:44 +02:00
WebServer WiFiServer - deprecate available(), use accept() everywhere (#8860) 2023-11-27 14:51:59 +02:00
WiFi WiFiServer - deprecate available(), use accept() everywhere (#8860) 2023-11-27 14:51:59 +02:00
WiFiClientSecure IDF release/v5.1 (#8758) 2023-10-12 10:05:50 +03:00
WiFiProv ESP-IDF v5.1 (#7733) 2023-10-05 14:54:25 +03:00
Wire Fully guard I2C Slave in preparation for C2 support (#8882) 2023-11-13 22:46:46 +02: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