This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I am developing an application where I have to connect to Bluetooth device on Android 4.3.
And I want to bilateral communicate between Android APP and CC2541 Keyfob.
My ideas is:
1.I connect to the CC2541 keyfob and send the Text data from my APP to CC2541 Keyfob.
2.And the CC2541 keyfob will show the text on the PC via UART after it receive the text from Android APP.
3.After CC2541 keyfob receive the text , it will send the text back to the Android APP.
The question like the following:
1.Which profile should I use??
2. How to send the text data to CC2541 keyfob in Android application 4.3 ??
3. How to receive the text data on CC2541 side ??
Thanks for your direction.
Hi wun,
1. You can start with SimpleBLEPeripheral project on CC254x.
2. You can use Android API to write characteristics. More info here: http://developer.android.com/guide/topics/connectivity/bluetooth-le.html
3. You will automatically receive the data on the CC254x if sent from the Android device.
I have try to connect to the CC2541 by KeyfobDemo project.
And I make the make the buzzer beep on CC2541 by using writeCharacteristic and IMMEDIATE_ALERT_UUID.
But I want to send the text string to CC2541 , but I don't know which UUID can send the string ?
And How to receive the string from Android device on CC2541 ?
Hi,
The keyfob demo doesn't really provide a good UUID to use for strings(you would have to create your own). It is easier to use SimpleBLEPeripheral in this case(ex. use SIMPLEPROFILE_CHAR1_UUID)
The CC2541 would receive the bytes corresponding to ASCII characters.