arduino-esp32/libraries
Sanket Wadekar 7c79cdd6e3
Fixed issue where esp32 won't reconnect to WiFi AP if the AP was restarted. (#7512)
* Fixed issue where esp32 won't reconnect to WiFi AP if the AP was restarted

* Added the autoReconnect condition and removed the reconnect reason

* Chenges on the WiFi reconnection and added new example

* Added new line at the end

* Changes reverted with some minor changes. New example remained

* Changes reverted and sync

Co-authored-by: pedro.minatel <pedro.minatel@espressif.com>
2022-12-22 17:43:26 +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 potential CORRUPT HEAP problem on libraries/BLE/src/BLEDevice.cpp (#7597) 2022-12-21 19:59:40 +02:00
BluetoothSerial Fix BluetoothSerial thinking it's disconnected (#7372) 2022-12-19 15:02:18 +02: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 inconsistencies and adds extended HardwareSerial examples (#7412) 2022-12-21 18:47:17 +02:00
ESPmDNS Bump library versions to 2.0.0 (#5182) 2021-05-18 14:00:49 +03:00
Ethernet Fix ETH link status, missing duplex mode, IDF version check (#7593) 2022-12-19 12:46:02 +02:00
FFat NTP Examples: revert obsolete comment and updated Time example (#6073) 2022-01-17 16:09:58 +02:00
FS Performance improvements by replacing sprintf with strcpy/strcat. Additional avoid creating temporary String objects. (#7541) 2022-12-19 12:45:36 +02:00
HTTPClient Fixes Cookie Case Sensitivity (#7112) 2022-08-16 12:07:24 +02: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 Added compiler.warning_flags to platform.txt; fixing #6118 (#6596) 2022-05-09 23:17:12 +03:00
Insights Draft: Esp insights library support (#7566) 2022-12-22 17:42:56 +02: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 Rainmaker Example Changes (#7591) 2022-12-15 12:46:58 +02: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 Added maxOpenFiles to SDMMC (#6912) 2022-06-25 16:30:40 +03: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 Fix Ticker::Active crash if _ticker null (#6511) (#6513) 2022-04-04 14:45:14 +03:00
Update UpdateClass - speedup flash erase/writes (#7002) 2022-08-10 13:28:46 -03:00
USB Fix race condition with USBHID semaphore (#7205) 2022-09-17 08:05:25 +03:00
WebServer WebServer: rename & expose internal 'contentLength' variable for POST… (#7012) 2022-08-11 08:44:22 -03:00
WiFi Fixed issue where esp32 won't reconnect to WiFi AP if the AP was restarted. (#7512) 2022-12-22 17:43:26 +02:00
WiFiClientSecure Fix conflict with ESP-IDF's esp_crt_bundle (#7560) 2022-12-10 13:38:44 -03:00
WiFiProv Added compiler.warning_flags to platform.txt; fixing #6118 (#6596) 2022-05-09 23:17:12 +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