arduino-esp32/libraries
mishafarms b4a9684a74 Fix SerialBT.flush (#3579)
* Fix flush

flush should not flush the read buffer, it should wait till all output is drained from the write buffer.

* Update BluetoothSerial.cpp

Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com>
2020-01-20 22:34:57 +02:00
..
ArduinoOTA Extend logging of ArduinoOTA (#3217) 2019-09-16 19:54:21 +03:00
AsyncUDP Update AsyncUDP library.json (#2837) 2019-06-05 13:43:15 +02:00
AzureIoT@67dfa4f31e Add submodule of Azure IoT library (#1448) 2018-05-31 14:52:02 +02:00
BLE Add BLEDevice::stopAdvertising() helper method to compliment startAdvertising(). (#3624) 2020-01-20 16:31:12 +02:00
BluetoothSerial Fix SerialBT.flush (#3579) 2020-01-20 22:34:57 +02:00
DNSServer Update CaptivePortal.ino (#3628) 2020-01-20 16:04:21 +02:00
EEPROM allow the examples to build in a more strict env (#3299) 2019-09-29 23:47:02 +03:00
ESP32 Add TTGO T Journal Camera module & improve commenting (#3515) 2020-01-20 15:33:38 +02:00
ESPmDNS fix empty reply from server error (#2903) 2019-07-09 19:39:12 +03:00
FFat Added file.close to examples (#3611) 2020-01-20 16:47:40 +02:00
FS workaround for FS implementations that do not support fflush() (#2596) 2019-04-09 21:15:21 +02:00
HTTPClient Fix replacing of headers with overlapping names. Fixes issue #3483 (#3487) 2020-01-20 15:27:51 +02:00
HTTPUpdate Fix Timeout Bug in WebServer (#2938) 2019-07-09 19:27:24 +03:00
NetBIOS Update IDF to aaf1239 (#1539) 2018-06-27 09:01:06 +02:00
Preferences Refactored use of LOG_X(LOG_TAG, ...) to log_x(...) (#2672) 2019-04-15 17:26:35 +02:00
SD Added a parameter for max files in SD (#2563) 2019-04-09 21:07:25 +02:00
SD_MMC Update IDF to 3.2-3276a13 and esptool.py to 2.5.0 (#1878) 2018-09-21 08:39:36 +02:00
SimpleBLE Update IDF to aaf1239 (#1539) 2018-06-27 09:01:06 +02:00
SPI Cleanup SPI_Multiple_Buses (#3527) 2020-01-20 15:37:47 +02:00
SPIFFS Added file.close to examples (#3611) 2020-01-20 16:47:40 +02:00
Ticker Fix long Ticker period conversion: cast ms to uint64_t when calculating us (#3175) 2019-09-05 10:34:47 +03:00
Update Extend logging of ArduinoOTA (#3217) 2019-09-16 19:54:21 +03:00
WebServer Add Uri with support for regexUri and globUri (#3441) 2020-01-20 15:21:01 +02:00
WiFi Added the channel parameter to the scan fucntion in order to select which channel to scan. (#3638) 2020-01-20 16:13:10 +02:00
WiFiClientSecure Root CA of webserver has changed, minor changes (#3447) 2019-11-11 15:45:26 +01:00
Wire I2C debugging and Log Dump Explaination (#2325) 2019-01-22 17:24:51 +08:00
README.md Added a description README.md for libraries (#3349) 2019-10-14 20:37:09 +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

AzureIoT

Library to interact with Microsoft Azure IoT services

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

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

NetBIOS

NetBIOS name advertiser

Preferences

Flash keystore using ESP32 NVS

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

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 (master only)