sgupta2877
About
- Username
- sgupta2877
- Joined
- Visits
- 75
- Last Active
- Roles
- Member
Comments
-
Eric,I am able to get streaming notifications now. Just playing around with the order of commands fixed the issue. Thank you! Sanjay
-
I am enabling characteristic notifications on Nordic by writing on UUID 0x2902 (essentially the LSB needs to be set). After I do that, button presses result in some packets coming through on handle 0x1F. Now, I just need the x, y and z axis accele…
-
Sorry - just to add and correct: when I write 0xFFFF to handle 0x20 (UUID: 0x2902), I get the two packets with 0x01, 01, 01 and 0x01, 0x01, 0x00 The indicated characterstic handle is 0x1F on these packets.
-
I am using Silicon Labs BLE113 and their Bluegiga Protocol Stack. As long as a connection is established with Meta C - which in this case there is one, all data coming from Meta C on that connection will be passed to the application by BLE113 stack …
-
Still no success. I am writing: <----- 0x03, 0x04, 0x01 (on Handle 0x1D) ------> Received confirmation <---- 0x03, 0x02, 0x01, 0x00 (on Handle 0x1D) -----> Received confirmation <---- 0x03, 0x01, 0x01 (On Handle 0x1D) ---…
-
I have already checked with the Metawear App on iPhone. The board is working. What I am struggling is to figure out how to enable notifications. From the CPP API code, I see the following commands: 0x03, 0x02, 0x01, 0x00 - Data Interrupt Enabl…
-
I have tried the above, but still face the same issue. It seems like I am missing a step or the right set of commands. I have scrounged this forum and the code. After all service/UUID have been found, Here is what I am doing to enable notifications …
-
I am really confused. Just so we are on the same page, I have my own board running a RTOS which has BLE stack (host), which I am trying to connect to Metawear C (board). The Metawear C accelerometer board does continuous measurements and I should …
-
Hi Eric,I did not issue any command. I assumed once we write to the CCC attribute, the notifications are enabled (as they are in other sensors such as HR sensors etc.). Can you point me to sections of the documentation/code which I can follow to…