arduino-esp32/libraries
Rodrigo Garcia 74e4a744ce
feat(uart): uart break example improvement (#10525)
prints the HEXA and CHAR in order to allow the user to see why there is 1 extra char (0x00) when BREAK is received.
2024-10-25 20:48:35 +03:00
..
ArduinoOTA ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
AsyncUDP fix(asyncudp): Fixes and implements tcpip thread locking (#10415) 2024-10-07 19:15:42 +03:00
BLE Fix comments for AD types in advertising (#10512) 2024-10-23 20:39:12 +03:00
BluetoothSerial ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
DNSServer ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
EEPROM Update core version to 3.0.5 2024-09-18 14:54:00 +03:00
ESP32 feat(uart): uart break example improvement (#10525) 2024-10-25 20:48:35 +03:00
ESP_I2S ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
ESP_NOW ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
ESP_SR ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
ESPmDNS ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
Ethernet ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
FFat ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
FS Update core version to 3.0.5 2024-09-18 14:54:00 +03:00
HTTPClient ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
HTTPUpdate ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
HTTPUpdateServer ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
Insights ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
LittleFS ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
NetBIOS ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
Network fix (NetworkEvents lib) remove checks for duplicated event handlers (#10376) 2024-10-24 15:15:13 +03:00
NetworkClientSecure ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
OpenThread Update FreeRTOS Symbols in OThreadCLI (#10412) 2024-10-03 09:37:44 +03:00
PPP ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
Preferences Update core version to 3.0.5 2024-09-18 14:54:00 +03:00
RainMaker ci(compilation): Use default partition and add append to FQBN option (#10392) 2024-10-04 16:57:08 +03:00
SD ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
SD_MMC ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
SimpleBLE ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
SPI ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
SPIFFS ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
TFLiteMicro Update core version to 3.0.5 2024-09-18 14:54:00 +03:00
Ticker Update core version to 3.0.5 2024-09-18 14:54:00 +03:00
Update Update lib - User can choose if calc MD5 from encrypted or decrypted file (#10510) 2024-10-24 14:31:54 +03:00
USB fix(hid): Fix OUTPUT report not received (#10398) 2024-10-02 15:34:27 +03:00
WebServer ci(json): Add configuration requirements to ci.json files (#10385) 2024-09-30 13:43:50 +03:00
WiFi Fix WPS example config initialization (#10399) 2024-10-02 15:26:32 +03:00
WiFiProv ci(compilation): Use default partition and add append to FQBN option (#10392) 2024-10-04 16:57:08 +03:00
Wire Add conditional compilation for second I2C interface based on SOC_I2C_NUM (#10408) 2024-10-04 13:49:55 +03:00
Zigbee fix(zigbee): Enable internal pull-up resistor (#10491) 2024-10-23 11:46:04 +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