arduino-esp32/libraries
2023-08-18 14:10:31 +02: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 Fix for negative temp in Eddystone TLM; solving #7618 (#7791) 2023-02-20 13:30:04 +02:00
BluetoothSerial in BluetoothSerial.setTimeout also set timeout for parent class Stream. (#7924) 2023-03-31 14:56:06 +03:00
DNSServer DNSServer fix custom code replies (#7475) 2022-12-14 17:06:44 +02:00
EEPROM chore: add err name to EEPROMClass commit method's error log (#7598) 2022-12-19 15:14:09 +02:00
ESP32 Fixes Serial Example and Adds a new std:func Serial Example (#8409) 2023-07-17 12:50:41 +03:00
ESPmDNS Add overloads to support __FlashStringHelper like ESP8266 has them. (#8111) 2023-05-03 20:28:18 +03:00
Ethernet Register Ethernet netif in WiFiGeneric to (#7632) 2023-02-15 14:22:04 +02:00
FFat NTP Examples: revert obsolete comment and updated Time example (#6073) 2022-01-17 16:09:58 +02:00
FS getNextFileName: Get info whether filename is a file or directory (#8079) 2023-04-18 01:56:36 +03:00
HTTPClient Add support for large uploads to HTTPClient (#8006) 2023-03-31 13:39:38 +03:00
HTTPUpdate Added HTTPUpdate request callback (#7934) 2023-03-31 14:51:03 +03:00
HTTPUpdateServer Removed duplicate MDNS.begin() call in example 2023-08-11 11:28:13 +02:00
I2S Added compiler.warning_flags to platform.txt; fixing #6118 (#6596) 2022-05-09 23:17:12 +03:00
Insights Add Insights in Rainmaker Switch example (#8011) 2023-04-10 17:46:02 +03:00
LittleFS Fix wrong environment variable: MKSPIFFSTOOL. (#7537) 2022-12-14 16:55:44 +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 fix: rainmaker device callback not getting invoked (#8249) 2023-05-31 14:41:02 +03: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 setPins fix ESP32 "specified pins are not supported by this chip." (#7646) 2023-02-06 19:36:16 +02: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 Ticker fix solving #6155 (#7664) 2023-02-06 17:25:58 +02:00
Update Fix Name (#7691) 2023-02-06 15:05:31 +02:00
USB Makes Gamepad example able to be tested with Windows 10/11 (#8058) 2023-04-10 23:43:09 +03:00
WebServer Fix for timeout issues on WebServer (#8319) 2023-06-29 23:26:16 +03:00
WiFi Reimplemented flush in WiFiClient 2023-08-18 14:10:31 +02:00
WiFiClientSecure set _use_insecure back to false in setCACert method. (#8386) 2023-07-17 12:54:14 +03:00
WiFiProv Provisioning fix and upgrades (#8209) 2023-05-31 14:37:34 +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