I am trying to connect to a glucose sensor using the default bluetooth profile 0x1808
. I have already connected to the device, discovered all services and characteristics but I can not read the Glucose Measurement 0x2A18
{
"service":"1808",
"characteristic":"2a18",
"properties":["Notify"],
"descriptors":[{
"uuid":"2902"
}]
},
{
"service":"1808",
"characteristic":"2a34",
"properties":["Notify"],
"descriptors":[{
"uuid":"2902"
}]
},
{
"service":"1808",
"characteristic":"2a51",
"properties":["Read"]
},
{
"service":"1808",
"characteristic":"2a52",
"properties":["Write","Indicate"],
"descriptors":[{
"uuid":"2902"
}]
}
Can anyone help me how to read the value of 0x2a18
?
Do I have to write anything to 0x2a52
(Record Access Control Point) to gain access?
I am new to Bluetooth Connection. Thank you in advance.