user2583310
user2583310

Reputation: 17

Make an iOS device a bluetooth microphone through CoreBluetooth

Is it possible to fake an iOS device into a bluetooth microphone such that other phones paired and connected to it would have be able to receive audio in real time?

I know it is not possible for Android since the android does not support the sink role in the bluetooth A2DP profile but was wondering if this is possible for iOS since I've seen claims that iOS can become peripherals as well using Core Bluetooth.

Upvotes: 0

Views: 445

Answers (1)

Joris Kluivers
Joris Kluivers

Reputation: 12081

The CoreBluetooth framework is for Bluetooth Low Energy (BLE) usage only. This is perfect for sending sensor data, but the throughput is not enough for audio. The A2DP profile is not part of BLE and iOS provides no access to profiles other than BLE.

Upvotes: 1

Related Questions