NRF Connect does not register notify characteristic updates
-
Hi.
I am developing a UNITY3D game for Android and I am using this C# unity3D plugin:
bluetooth-le-for-ios-tvos-and-android-26661(Cannot reference it as URL due to akismet flagging it as spam)
I have successfully connected to the button, and subscribed to characteristic 00420002-8f59-4420-870d-84f3b617e493 (I am using a Flic2 button).
However, no data ever gets transmitted to me, in the notify loop.
I am debugging this in NRF connect, and under the characteristic, the button actions do not get updated as well.
The flic button is working fine under the flic2 android sample, but how do I get notified in a more standard BLE way, instead of using the Flic2 app/framework (which I do not have access to under Unity3D).I know I could write an android library which I might be inclined to do, but I am just sure there is an easier way, as the connection and all is already properly set up.
NRF screenshot:
link textFull code linked:
https://drive.google.com/file/d/1Q0GPlI2SiXwrEn0aOJq64ZECgOWr3qv-/view?usp=sharing
(Feel free to use it for your own purposes if you want to)Can anyone see any issues here?
Why do I not get notified?All the best
Tobias -
Hi. The button will not just send data by itself. You need to pair and initiate transmission first.
I suggest you to look at our protocol specification at https://github.com/50ButtonsEach/flic2-documentation.
If you can't use the flic2lib-android directly, you can at least look at the source code at https://github.com/50ButtonsEach/flic2lib-android/blob/master/flic2lib-android/src/main/java/io/flic/flic2libandroid/Flic2Button.java and try to port it to C#. The code follows the protocol specification.