h2zero

Results 299 comments of h2zero

If you're on gitter it would be best to converse there.

Hello, you can request different connection parameters to reduce this down to a minimum of 7.5ms. `pServer->updateConnParams(conn_handle, 6, 6, 0, 200);`

I cannot reproduce this so far. From the log it looks like a variable was unitialized, the value `0xabba1234` is interesting as that is the heap head value.

The NimBLE stack does not support stopping a service the way the bluedroid stack does. Instead it can "hide" it or delete it completely. For this to work advertising must...

There is no API to do this but I believe if you modify the library slightly it may work. change https://github.com/h2zero/NimBLE-Arduino/blob/8ff8f0fc35afed5db8276bd2f41afce22732e1f7/src/NimBLEDevice.cpp#L87 to BLE_OWN_ADDR_RANDOM

Interesting, unfortunately the way the esp32 handles the address and address type makes it somewhat difficult due to needing host based privacy. In addition to that the functions needed in...

Ha, well done! I thought you were trying to set a specific address not just a random address of type random? Awesome that this worked :smile:

Thank you for the report and sharing the code to reproduce this. The templates do not seem to be handling this use case properly at the moment, I will look...

If the scan is not producing results it's probably because it wasn't started, you should consider checking the return value from `start()` to see if there was an error, also...