esp-nimble-cpp
1.4.1
|
This is a C++ BLE library for the ESP32 that uses the NimBLE host stack instead of bluedroid.
The aim is to maintain, as much as reasonable, the original bluedroid C++ & Arduino BLE API by while adding new features
and making improvements in performance, resource use, and stability.
Testing shows a nearly 50% reduction in flash use and approx. 100kB less ram consumed vs the original!
Your results may vary
NimBLE is a completely open source Bluetooth Low Energy stack produced by Apache.
It is more suited to resource constrained devices than bluedroid and has now been ported to the ESP32 by Espressif.
Download as .zip and extract or clone into the components folder in your esp-idf project.
Run menuconfig, go to Component config->Bluetooth
enable Bluetooth and in Bluetooth host
NimBLE.
Configure settings in NimBLE Options
.
#include "NimBLEDevice.h"
in main.cpp.
Call NimBLEDevice::init
in app_main
.
The NimBLE component does not come with these versions of IDF (now included in 3.3.2 and above).
A backport that works in these versions has been created and is available here.
Download or clone that repo into your project/components folder and run menuconfig. Configure settings in main menu -> NimBLE Options
.
#include "NimBLEDevice.h"
in main.cpp.
Call NimBLEDevice::init
in app_main
.
This library is intended to be compatible with the original ESP32 BLE functions and types with minor changes.
If you have not used the original Bluedroid library please refer to the New user guide.
If you are familiar with the original library, see: The migration guide for details.
Also see Improvements and updates for information about non-breaking changes.
For more advanced usage see Usage tips for more performance and optimization.
Come chat on gitter or open an issue at NimBLE-Arduino or esp-nimble-cpp