Go to file
Sebastian Holder 226c67f729
Initialize ble_gatt_chr_def[]. Fixes #148 (#150)
IDF 5.2 introduced a new member, cpfd, to the
ble_gatt_chr_def struct. It needs to be initialized
to nullptr in order to avoid accessing uninitialized
memory. By initializing the whole struct, we get
everything initialized in a backward-compatible way.
2024-04-20 09:14:55 -06:00
.github/workflows Support for C2 (#131) 2023-09-01 11:56:52 -06:00
docs Fix inconsistent use of time units (#143) 2024-02-29 17:34:53 -07:00
examples Fix inconsistent use of time units (#143) 2024-02-29 17:34:53 -07:00
src Initialize ble_gatt_chr_def[]. Fixes #148 (#150) 2024-04-20 09:14:55 -06:00
.gitignore Add docs build. 2022-08-27 13:02:29 -06:00
CHANGELOG.md Remove NimBLESecurity class. (#75) 2022-08-21 21:33:39 -06:00
CMakeLists.txt Support for C2 (#131) 2023-09-01 11:56:52 -06:00
CMakeLists.txt_idf3 Remove FreeRTOS from CmakeLists. 2021-07-14 10:30:41 -06:00
Kconfig Release 1.4.0 2022-07-31 11:34:56 -06:00
LICENSE Initial commit. 2020-03-29 17:44:20 -06:00
README.md Update documentation. 2021-07-12 13:33:56 -06:00
component.mk Add missing component.mk file. 2020-03-29 19:13:59 -06:00

README.md

Latest release Release Version Release Date

Need help? Have questions or suggestions? Join the Gitter

esp-nimble-cpp

NimBLE CPP library for use with ESP32 that attempts to maintain compatibility with the nkolban cpp_uitls BLE API.

An Arduino version of this library, including NimBLE, can be found here.

This library significantly reduces resource usage and improves performance for ESP32 BLE applications as compared
with the bluedroid based library. The goal is to maintain, as much as reasonable, compatibility with the original
library but refactored to use the NimBLE stack. In addition, this library will be more actively developed and maintained
to provide improved capabilites and stability over the original.

Testing shows a nearly 50% reduction in flash use and approx. 100kB less ram consumed vs the original!
Your results may vary

What is NimBLE?

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.

Installation

ESP-IDF v4.0+

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.

ESP-IDF v3.2 & v3.3

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.

Using

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 about breaking changes and migration.

Also see Improvements_and_updates for information about non-breaking changes.

Full API documentation and class list can be found here.

Using with Arduino as an IDF component and CMake

When using this library along with Arduino and compiling with CMake you must add add_compile_definitions(ARDUINO_ARCH_ESP32=1)
in your project/CMakeLists.txt after the line include($ENV{IDF_PATH}/tools/cmake/project.cmake) to prevent Arduino from releasing BLE memory.

Acknowledgments