Ryan Powell
Ryan Powell
@vicatcu Any progress on this?
Closing this as resolved.
Please test with the example here: https://github.com/h2zero/NimBLE-Arduino/blob/release/1.4/examples/NimBLE_Secure_Server/NimBLE_Secure_Server.ino and let me know if that works.
@nitin-jethava >The client fails to connect to the server using the provided remote device addresses. If you are hard coding an address you must make sure the address type is...
Are you using esp-idf? If so please use https://github.com/h2zero/esp-nimble-cpp instead of this repo.
Okay, I see now, this issue belongs in esp-nimble-cpp and I will fix it there now. The problem is that these were supposed to be removed but got missed: ```...
The reason to allow this is because you could be a central and a peripheral with no need to advertise. In your case you need to be able to advertise...
Closing this as resolved.
Thank you for the PR. It is not necessary to specify individual boards, instead just the chip as this library universally supports the chips that it supports regardless of the...
Please try setting the security config after init instead of in the callback. ``` NimBLEDevice::init(); NimBLEDevice::setSecurityAuth(true,true,true); NimBLEDevice::setSecurityIOCap (0x00); NimBLEDevice::setSecurityInitKey (BLE_SM_PAIR_KEY_DIST_ENC | BLE_SM_PAIR_KEY_DIST_ID); NimBLEDevice::setSecurityRespKey(BLE_SM_PAIR_KEY_DIST_ENC | BLE_SM_PAIR_KEY_DIST_ID); ```