NimBLE-Arduino icon indicating copy to clipboard operation
NimBLE-Arduino copied to clipboard

A fork of the NimBLE library structured for compilation with Arduino, for use with ESP32, nRF5x.

Results 220 NimBLE-Arduino issues
Sort by recently updated
recently updated
newest added

Is it possible to know if this is a feature or a bug. Trying to establish a connection between ESP32 and NRFConnect (iPhone), the passkey is only requested to be...

Hi, I'm using NimBLE to connect ESP32 to a BLE server, and it needs secure connection, but when I perform a secureConnection() on client, it is failed with reason code...

I' m using NimBLE in ESP32(server), the SecurityAuth is: ~~~c NimBLEDevice::setSecurityAuth(BLE_SM_PAIR_AUTHREQ_BOND | BLE_SM_PAIR_AUTHREQ_SC); ~~~ ISSUE: --- After several mobile phones(client) connected to the same ESP32, the connection fails on the...

I have a device with mostly public but some private data. If too many devices bond, it seems like the pairing information does not get stored any more (ios returns...

Hi! I am trying to talk to a plant monitor over BLE using ESP32. I am able to talk to it from [Raspberry PI, using Bluepy](https://github.com/sergem155/miflora-influxdb/blob/master/poll-insert.py) (using handles, though). With...

**Steps to reproduce** 1. Create a `NimBLEHIDDevice` instance. 2. Call `manufacturer()->setValue()`. 3. Call `pnp()` 4. Start services Example code: ```c hid = new NimBLEHIDDevice(pServer); if (!hid) { log_e("Unable to create...

Below Sketch working fine for android client to ESP32 server. Here when connect with eps32 then no required any passkey. After connected when i send write request then require passkey...

"I am creating a braille device and I am getting the following error message: "Compilation error: no matching function for call to 'NimBLEHIDDevice::NimBLEHIDDevice()'" This is my code that is incorrect."...

Hello, Thank you for creating and maintaining this wonderful library. I've been trying in the past days to connect to a bluetooth mouse but I'm still not familiar with the...

Hello, I have a problem with the function "NimBLERemoteCharacteristic::writeValue" which I call multiple times quickly after each other. When my data length does not exceed the MTU size in each...