How to Create a Custom BLE Service without BLE Developer Studio now that its not available any more?
Thank you
How to Create a Custom BLE Service without BLE Developer Studio now that its not available any more?
Thank you
What I did was to take the example template and hack it. There are templates that do most of what you want in the examples directory. The key things are:
1) get the bluetooth stack working eg advertising etc.
2) add a long version uuid for the service
3) create your characteristics and the handlers for them
There are a couple of really good tutes. This one especially: https://www.novelbits.io/smart-ble-lightbulb-application-nrf52/
HTH
Paul
What I did was to take the example template and hack it. There are templates that do most of what you want in the examples directory. The key things are:
1) get the bluetooth stack working eg advertising etc.
2) add a long version uuid for the service
3) create your characteristics and the handlers for them
There are a couple of really good tutes. This one especially: https://www.novelbits.io/smart-ble-lightbulb-application-nrf52/
HTH
Paul
Thank You I will try that.