NimBLE-Arduino
NimBLE-Arduino copied to clipboard
A fork of the NimBLE library structured for compilation with Arduino, for use with ESP32, nRF5x.
I found this phenomenon when I was testing with version 1.4.2 at first, but the same phenomenon seems to occur when I test with 2.1.0 with modified code to be...
Hi @h2zero , I just tested 2.1.2 and here's is a sample from a log output. I can reproduce this 100%. 1. Bond device 2. Disconnect device 3. Reconnect device...
The new release is not backward compatible with V1 and does not raise any warning when compiling with the new version. Functions compile without warning but simply do not work...
Hi I used the nimBLE library with the ESP32-BLE-CompositeHID to emulate a controller for flipping Anki flash cards. That worked fine very nice libraries!! But since im using Anki on...
I'm seeing a trend in the issues since the mistaken and soon to be removed release of version 2.0.0 on the Arduino library manager where the address comparisons that were...
I am using NimBLE with an ESP32. It seems the way bonded clients are stored in NVS changed from NimBLE 1.4.2 to 2.0.0. **Going from 1.4.2 to 2.0.0** In 2.0.0,...
The notifications will work initially, but it seems they timeout or just stop functioning at some point. I think it happens after 4-5 minutes. I am running this code on...
I'm transitioning my BLE implementation from the BLEDevice library to the NimBLE library to optimize flash and RAM usage. Here's the issue I'm facing: #### Previous Library (BLEDevice): - Implemented...
This code is working: ``` BLEScan* pBLEScan = BLEDevice::getScan(); const BLEAddress bleAddress( BLECommand->Address ); Serial.printf( "Sending command to BLE device: %s\n", BLECommand->Address ); uint64_t requestAddress = bleAddress; NimBLEScanResults results =...
Hello dear, When I use the example code "BLE_server_multiconnect.ino" I can connect 2 Android devices to the Esp32 perfectly. The problem I'm having is when I disconnect one of the...