Hi,
I am using the codeless AT command project to communicate with a smartphone.
So, I notice that there is a custom service that is enabled by codeless, which has 3 characteristics. One of this characteristics stores the data of whatever we send serially with prefix ATrl.
I am using this characteristic in the mobile app, and reading the data stored in this, so this way I am transferring data from able device to mobile. The smartphone here is GATT client.
The problem is that this characteristic does not have a NOTIFY property. So, it will not be possible to notify the smartphone whenever the data in this characteristic is updated. So I wanted to now whether I can make some changes to the codeless project, and add the NOTIFY property to this characteristic.
Also, in the code, I couldn't find the part of the code which writes the data on to characteristic when it receives ATrl through UART.
Thanks
Thanks a lot.
So tell me if I have understood this right.
The codeless project has a service, which has three characteristics, 2 with only read and write property and a third with a notify property. So, what I can do is if I enable notification for the third characteristic on the central, whenever I receive a notification, I must read the data from the 2nd characteristic( the one in which new data was written into.).
Hi krishnanag,
Exactly.
Thanks MT_Dialog