arduino-esp32/libraries
Gonzalo Brusco 823fe77e41
Uniform behaviour of WiFiClientSecure and WiFiClient setTimeout() (#6562)
* Uniform timeout WiFiClient-WiFiClientSecure

* Added missing prototype

* Add socket check on setTimeout
2022-04-26 14:46:07 +03:00
..
ArduinoOTA Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
AsyncUDP Add missing include in AsyncUDP.h (#6412) 2022-03-14 12:44:24 +02:00
BLE Correct less- and greater-than operators (#6521) 2022-04-04 14:44:32 +03:00
BluetoothSerial Allow BluetoothSerial::connect() with specified channel and more options (#6380) 2022-04-26 14:41:29 +03:00
DNSServer Because QName max. size is 256, the QNameLength range must be able to address it. Therefore the datatype was changed to uint16_t. (#6354) 2022-02-28 14:42:48 +02:00
EEPROM remove _user_defined_size from EEPROM (#5775) 2021-10-25 09:15:47 +03:00
ESP32 Update camera example to support face detection and recognition (#6603) 2022-04-21 17:48:47 +03:00
ESPmDNS Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
Ethernet Amend "GPIO refactoring (#6259)" (#6527) 2022-04-05 11:28:59 +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 Esp32 s3 support (#6341) 2022-03-28 12:09:41 +03: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 Esp32 s3 support (#6341) 2022-03-28 12:09:41 +03:00
LittleFS Update LittleFS PlatformIO example (#6617) 2022-04-26 14:02:14 +03: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 Added RainMaker support on Arduino IDE for ESP32-C3/S2/S3 (#6598) 2022-04-26 14:12:20 +03:00
SD Adding sectorsize() and numSectors() to SD (#6457) 2022-03-28 11:46:15 +03:00
SD_MMC Esp32 s3 support (#6341) 2022-03-28 12:09:41 +03:00
SimpleBLE Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
SPI Esp32 s3 support (#6341) 2022-03-28 12:09:41 +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 Compiler error (#6523) 2022-04-04 14:29:45 +03:00
USB Esp32 s3 support (#6341) 2022-03-28 12:09:41 +03:00
WebServer Fix - wrong path to file (#6505) 2022-03-31 16:54:33 +03:00
WiFi Uniform behaviour of WiFiClientSecure and WiFiClient setTimeout() (#6562) 2022-04-26 14:46:07 +03:00
WiFiClientSecure Uniform behaviour of WiFiClientSecure and WiFiClient setTimeout() (#6562) 2022-04-26 14:46:07 +03:00
WiFiProv Add conditional include to WiFiProv.h (#6192) 2022-01-31 13:06:39 +02:00
Wire Refactoring TwoWire::requestFrom() headers in Wire.cpp (#5935) 2021-12-14 16:25:01 +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