NimBLE-Arduino
NimBLE-Arduino copied to clipboard
A fork of the NimBLE library structured for compilation with Arduino, for use with ESP32, nRF5x.
Hi @h2zero and thanks for this amazing lib. I have the following code: ``` void BluetoothController::addBondedDevicesToWhitelist() { const auto numberOfBondedDevices = NimBLEDevice::getNumBonds(); for(auto i = 0U; i < numberOfBondedDevices; ++i)...
Fixed issue #492. Note that some changes are just code formatting from VSCode. Relevant changes are: `NimBLEHIDDevice::manufacturer()` and `NimBLEHIDDevice::pnp()`
I've hit a problem where I am trying to have an iPhone connect to multiple ESP32 NimBLE devices acting as peripherals using RPA and encryption. All ESP32s are running the...
In the usage tips document it is stated that it is best to use the library from a task that runs on the Nimble stack core in stead of the...
Hi, As there is a lot of BT traffic I wanted to use the whitelist, so I add all my devices (a Nuki smart lock and some different enocean switches...
Thanks for this great Lib. It works wonderful for my MQTT Bridge. I'm creating a BLE reader for Renogy LiFePo Batteries (https://github.com/distancerunner/Renogy-Battery-ESP32-Bluetooth-MQTT-Bridge). Actual I have 2 of them in my...
Hi, Would it be possible to configure the use of IRAM code? Currently the NimBLE is using a lot of IRAM functions, and it would be nice to be able...
Hi, had issues moving my nimble project from 'standard' BLE to the more advanced bluetooth 5.0. The standard NimBLE version compiles fine so my Arduino setup is correct, also rund...
I am having some (intermittent) issues connecting to a BLE device. My suspicion is that there is interference with wifi, ZigBee or other BLE devices that I have running here...
Hello, first excuse me for my level of English. I have modified the server example to add some parts of code and when I compile and load it, the code...