arduino-esp32/libraries
Jan Procházka 732a7cb4ee
feat(zigbee): Add Time cluster support + fix of duplicate indentify cluster (#10863)
* feat(zigbee): Add Time cluster support

* fix(zigbee): Remove duplicate of identify cluster

* feat(zigbee): Remove unused variables in addTimeCluster

* feat(zigbee): Update examples with optional Time cluster

* ci(pre-commit): Apply automatic fixes

---------

Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
2025-01-30 19:11:40 +02:00
..
ArduinoOTA IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
AsyncUDP IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
BLE IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
BluetoothSerial IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
DNSServer IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
EEPROM IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
ESP32 IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
ESP_I2S fix(i2s): Check if pin is used before clearing bus (#10833) 2025-01-10 14:05:16 +02:00
ESP_NOW IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
ESP_SR IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
ESPmDNS ESPmDNS: Add method for querying discovered service name (#10819) 2025-01-07 23:53:43 +02:00
Ethernet IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
FFat IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
FS IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
HTTPClient IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
HTTPUpdate IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
HTTPUpdateServer IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
Insights IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
LittleFS fix(littlefs): Converted core disableWDT functions to bool (#10896) 2025-01-27 12:39:15 +02:00
Matter fix(matter): serial print instead of log_i (#10842) 2025-01-13 12:36:03 +02:00
NetBIOS IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
Network IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
NetworkClientSecure IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
OpenThread IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
PPP IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
Preferences IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
RainMaker IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
SD IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
SD_MMC IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
SimpleBLE IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
SPI IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
SPIFFS IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
TFLiteMicro IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
Ticker IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
Update IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
USB IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
WebServer fix(example): Fix partition for PathArgServer 2025-01-13 19:14:41 -03:00
WiFi IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
WiFiProv IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
Wire IDF release/v5.3 (#10816) 2025-01-07 15:50:38 +02:00
Zigbee feat(zigbee): Add Time cluster support + fix of duplicate indentify cluster (#10863) 2025-01-30 19:11:40 +02: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