NimBLE-Arduino
NimBLE-Arduino copied to clipboard
A fork of the NimBLE library structured for compilation with Arduino, for use with ESP32, nRF5x.
I'm trying to optimize power on my esp32. So I have dropped the cpu speed to 40., but nimbleble stops working. The device does not show in the scanner at...
Added ability to track nimble_host task free stack for ESP32 and fixed wrong values in case of uninitialized BLE stack
This is a follow up for https://github.com/h2zero/NimBLE-Arduino/issues/642 ticket. **Branch**: https://github.com/h2zero/NimBLE-Arduino/tree/esp32-c6-test most recent **Arduino Core** [3.0.0-alpha3](https://github.com/espressif/arduino-esp32/releases/tag/3.0.0-alpha3) **NimBLE Server** sketch from examples folder The boot sequence is fine: ``` ESP-ROM:esp32c6-20220919 Build:Sep 19...
Hello, I currently have a project that uses a ESP32-s3 as a client. It connects with a BLE remote(server) that acts as HID keyboard. I just got everything working and...
Hi, `void notifyCB(NimBLERemoteCharacteristic* pRemoteCharacteristic, uint8_t* pData, size_t length, bool isNotify) { std::string str = (isNotify == true) ? "" : ""; //str += " from "; ///** NimBLEAddress and NimBLEUUID...
Hi, first of all thanks a lot for this library! So much better than the bluedroid based library. Solved a lot of issues. I want an ESP32 to act as...
I've been trying to advertise multiple services with a couple of bytes of data each. This is the code: ```cpp #include // See the following for generating UUIDs: // https://www.uuidgenerator.net/...
Hi, since beginning of the year i been having issues with the platformio, ``` [env:esp32dev] platform = [email protected] board = esp32dev framework = arduino board_build.filesystem = littlefs monitor_speed = 115200...
Hello sir, I am using BLE and WIfi both in one project, also trying to get WiFi available network list via BLE on app. If i am stating BLE service...
* Adds a new method, getPeerName to NimBLEServer to read the name from the peers device name characteristic. * Adds a setting to automatically get the name of the peer...