arduino-esp32/libraries
Rodrigo Garcia 7cf162346a
RMT refactoring based on IDF (#6024)
Summary

RMT HAL refactoring based on IDF.

Impact

Improves RMT by adding IDF v4.4 support.
Receiving RMT can handle any size of data.
rmtInit() has a new parameter - RxBufferSize - to hold any number of data when receiving RMT.
rmtWrite() has a new parameter - wait_tx_done - to block writing until sending all data.

Related links

fix #5905
2021-12-21 15:02:40 +02:00
..
ArduinoOTA Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
AsyncUDP Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
BLE HID_BRAILLE_DISPLAY (#6043) 2021-12-20 13:22:58 +02:00
BluetoothSerial Fix for BluetoothSerial build when using nimBLE instead of Bluedroid (#5920) 2021-12-14 15:56:25 +02:00
DNSServer Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
EEPROM remove _user_defined_size from EEPROM (#5775) 2021-10-25 09:15:47 +03:00
ESP32 RMT refactoring based on IDF (#6024) 2021-12-21 15:02:40 +02:00
ESPmDNS Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
Ethernet using ksz8081 only from ESP-IDF 4.4 onwards (#5918) 2021-12-14 16:09:01 +02:00
FFat SD.open() new feature for creating all folders in path (#5721) 2021-10-01 17:16:59 +03:00
FS SD.open() new feature for creating all folders in path (#5721) 2021-10-01 17:16:59 +03:00
HTTPClient Don't clear headers on redirect (#5973) 2021-12-14 15:37:31 +02:00
HTTPUpdate Examples update, add a note for configTime() that only one ntp server is supported by lwip (#5343) 2021-07-22 20:09:28 +03:00
HTTPUpdateServer Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
LittleFS SD.open() new feature for creating all folders in path (#5721) 2021-10-01 17:16:59 +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 [Feature] Added Sonoff DUALR3 support with RainMaker example (#5980) 2021-12-14 14:35:10 +02:00
SD Edit sd_diskio to check card status (#5988) 2021-12-14 14:22:30 +02:00
SD_MMC Fix: SD_MMC deinit (#5732) 2021-10-09 14:12:25 +03:00
SimpleBLE Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
SPI libraries/SPI/src/SPI.h: SPIClass: add method to get SS pin number (#5788) 2021-10-21 16:48:55 +03:00
SPIFFS SD.open() new feature for creating all folders in path (#5721) 2021-10-01 17:16:59 +03:00
Ticker Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
Update Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
USB Fix build error when compiling with verbose logging (#5747) 2021-10-11 13:00:25 +03:00
WebServer added comment for user clarity (#5724) 2021-10-01 17:17:42 +03:00
WiFi Fix wrongly applied patch to WiFi STA Init 2021-12-20 10:17:25 +02:00
WiFiClientSecure Fix memory leaks when SSL/TLS connection fails (#5945) 2021-12-14 15:59:26 +02:00
WiFiProv Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
Wire Refactoring TwoWire::requestFrom() headers in Wire.cpp (#5935) 2021-12-14 16:25:01 +02:00
README.md [Examples] README revision to include missing and remove old entries (#6049) 2021-12-21 15:00:37 +02: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

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