0

I am new with BluetoothLE in iPhone. I want to send string via bluetooth from IOS device to other non IOS device. I refer the BTLETransfer Example from the sample code in the developer portal it shows how to transmit data between two iOS devices. I also refer this link How to tranfer the call from one bluetooth device to other bluetooth device from iPhone? but did not find the solution. Can any one help me?

Community
  • 1
  • 1
Manju
  • 1
  • 2

1 Answers1

0

By using BTLETransfer Example from the sample code we can send String for iOS devices but In case of other non OS devices you have to create own advertiser packet containing you string like mentioned in sample code and other non OS devices must be able to read that packet and Other OS device must support BTLE.

In my case other OS device is Android and Android device able to catch packets advertise by iOS device by using BTLETransfer Example sample.

you can check this sample code will help you lot :

https://github.com/KhaosT/CBPeripheralManager-Demo/tree/master/PeripheralModeTest/PeripheralModeTest

Note : Use same CBUUID for other OS devices.

Uma_Shanker_Tiwari
  • 453
  • 1
  • 3
  • 16
  • hi thanks for your reply. I am not geting your point. because my iPad is not connecting with android nexux5. can you help me how can i start? – Manju Apr 10 '15 at 06:07
  • First you need to run the above mention sample code using two iOS devices after you know how it is working you need to create a sample code like that for android also. – Uma_Shanker_Tiwari Apr 10 '15 at 09:49