custom_ble_service_example icon indicating copy to clipboard operation
custom_ble_service_example copied to clipboard

Results 10 custom_ble_service_example issues
Sort by recently updated
recently updated
newest added

Hello, First of all, congratulations on the guide, it is very well done. How can I now insert another characteristic on the same service? Thank

Hello Bjorn, Thanks for this useful tutorial. We are working on an application with motion control based on nRF52840 (S140). I have implemented your example / tutorial and modified the...

this example is nice but it needs to show how to add more services with notification and more characteristics. It should also show how to integrate from BDS because i...

how to pass the float values to on_write function of ble_app_template when we give input from nrf app connect using ble in segger emmbedded studio

For a newbie, this erroneous byte swap was a little confusing: In the text, it says this is the UUID that was used: f364adc9-b000-4042-ba50-05ca45bf8abc But all the code and screenshots...

Sadly i did not fork the project, so no direct linkage here.. see: https://github.com/maidenone/custom_ble_service_example

Are there any examples of how to create a central that can connect to this custom service? I need to make a pair of devices, one that will be the...

Hello @bjornspockeli, thanks for this great example! Can you please add a custom User Description to the characteristic. I had it working on SDK 14, though after migration to Version...

https://github.com/bjornspockeli/custom_ble_service_example/blob/19b59503287cba95dd0f590deef170a7e32e1ee6/main.c#L270 APP_ERROR_CHECK(err_code); should be replaced by if ((err_code != NRF_ERROR_INVALID_STATE) && (err_code != NRF_ERROR_RESOURCES) && (err_code != NRF_ERROR_NOT_FOUND)) { APP_ERROR_CHECK(err_code); }

As written, the walkthrough does not work. At the end of Step 3 you should be able to connect to the peripheral, but I wasn't able to. The missing steps...