Ryan Powell
Ryan Powell
If you would like to post some example code it would be easier for me to answer this.
No news, the service uuid I believe is the cause here. It is taking up likely 18 bytes out of 28 and the name would be limited to 8 because...
This is all taken care of by the library. No need to do anything with the 2902 descriptors here.
Yes, that is where it is created.
Your code works, but I don't understand what you are trying to achieve here? > why is this done twice, does NimBLE-Arduino do something additional to nimble? This was done...
Hello, just a quick comment. This: `Serial.println(WLaddress1); ` will not work as you may expect. Instead you will want to use `Serial.println(WLaddress1.toString().c_str());`. As for storing the address I think you...
All I can see in the log is this: ``` secureConnection: failed rc=13 ``` Which is 0x0d | BLE_HS_ETIMEOUT | Operation timed out. -- | -- | -- This may...
I think this may have something to do with `BLE_SM_PAIR_AUTHREQ_SC` or `ble_hs_cfg.sm_sc=1;` being enabled. Try removing this, by setting `ble_hs_cfg.sm_sc=0;`
@Lemin2 Any updates?
Is the device you are connecting to advertising when you attempt to connect? If not, then it will fail since it will not be listening for connections.