A small library that adds concurrency to CoreBluetooth APIs.
- Async/Await APIs
- Queueing of commands
- Data conversion to common types
- Thread safety
- Convenience APIs for reading/writing without needing to explicitly discover characteristics.
- Convenience API for waiting until Bluetooth is ready.
Start scanning by calling the central manager's scanForPeripherals
function. It returns an AsyncStream
you can use to iterate over the
discovered peripherals. Once you're satisfied with your scan, you can
break from the loop and stop scanning.
let centralManager = CentralManager()
try await centralManager.waitUntilReady()
let scanDataStream = try await centralManager.scanForPeripherals(withServices: nil)
for await scanData in scanDataStream {
// Check scan data...
}
await centralManager.stopScan()
Once you have your peripheral, you can use the central manager to connect to it. Note you must hold a reference to the Peripheral while it's connected.
try await centralManager.connect(peripheral, options: nil)
You can use convenience functions for reading characteristics. They will find the characteristic by using a UUID
, and
parse the data into the appropriate type.
let value: String? = try await peripheral.readValue(
forCharacteristicWithUUID: UUID(uuidString: "")!,
ofServiceWithUUID: UUID(uuidString: "")!
)
Simlar to reading, we have convenience functions for writing to characteristics.
try await peripheral.writeValue(
value,
forCharacteristicWithUUID: UUID(uuidString: "")!,
ofServiceWithUUID: UUID(uuidString: "")!
)
You can find practical, tasty recipes for how to use AsyncBluetooth
in the
AsyncBluetooth Cookbook.
This library can be installed using the Swift Package Manager by adding it to your Package Dependencies.
- iOS 14.0+
- MacOS 11.0+
- Swift 5
- Xcoce 13.2.1+
Licensed under MIT license.