ExampleApp shows most common, basic use cases of RxBluetoothKit. It's built with Catalyst, to provide the most real life experience even for those who currently don't own any BLE sensor to connect with. You just need an iOS device and a mac computer to quickly see by yourself how to advertise services and characteristics, scan for peripherals, connect to them and observe the changes.
Central mode is divided into two common use cases:
- Specific: Quickly connect to a specific peripheral, with known service and characteristic UUIDs and subscribe to changes of the value. BLE connection is done in a single Rx chain to show how easy and flexible RxBluetoothKit is. This screen also presents the desired way of ending a connection (see here)
- List: List peripherals in range, connect to selected one, list it's services and characteristics and specifically read, subscribe to notifications or write to a characteristic. To show the best way of handling BLE in larger apps, we encapsulated connection logic in a separate object, a BluetoothProvider.
Peripheral mode gives you the overview on how to advertise specific service with a specific characteristic for update notifications, reading and writing to said characteristic.
- Xode 12.0
- Open up
ExampleApp.xcodeproj
in Xcode and give some time to SPM to set up dependencies. - In
Signing & Capabilities
set team for iOS distribution to your "personal team". - Run the project on "My Mac" target
- Without stopping the project, run again on iOS device.
- Enjoy BLE connection between your device and your mac 🎉
Typical steps to see the BLE connection:
- On iOS device, choose
Peripheral
mode, thenUpdate
- Enter service UUID (f.e. "AAA1") and Characteristic UUID (f.e. "BBB2"), then tap
Advertise
- On Mac, choose
Central
, thenSpecific
- Enter the same service and characteristic UUIDs as in
2.
- Click
Connect
. If the connection is successfull, you should seeRead value
label turning green - On iOS device enter some text in the
Value
field. TapUpdate
- Observe updated value on your Mac 🎉
Alternatively, you can try advertising in different modes, f.e. write:
- On iOS device, choose
Peripheral
mode, thenWrite
- Enter service UUID (f.e. "AAA1") and Characteristic UUID (f.e. "BBB2"), then tap
Advertise
- On Mac, choose
Central
, thenList
. Then click the magnifying glass toolbar icon in the upper-right-hand corner to start scanning for peripherals - On the list, find a peripheral named
RxBluetoothKit
. Tap it - On the list of peripheral's services, find a service with uuid entered in
2.
- On the list of the chosen service's characteristics, find the one you entered in
2.
- Click
Write
- Enter string value to be written to a characteristic. Click
Write
- Observe the written value on your iOS device 🎉