Reputation: 17
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
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