This series will pick up where the last series left off. It should be fairly quick, relatively.
If we do a recap of our conclusion, we were left with the following list of “TODOs”:
- The error handling is primitive, at best.
We didn’t really do much to capture errors. We have the ability in the apps to catch and display them, but we didn’t take advantage of this in the SDK.
This was mostly because I wanted to keep the lesson as simple and to-the-point as possible. If it were a “shipping” SDK, error handling would have been one of my first priorities. - The Central “locks up” Peripherals.
Because we connect, then hold the connection, a Peripheral is dedicated to a Central. It might be nice to allow a Peripheral to be used by multiple Centrals. - We could put the entire Peripheral functionality inside the SDK.
We could remove the ability to select a response, thus pretty much obviating the need for user intervention. It could be entirely possible to simply do the response automatically in the SDK, and report the results to the Peripheral user. - It would be nice to know whether or not the question made it to the Peripheral.
At the moment, we have the.writeWithoutResponse
property set on the question, so we aren’t sure that the question made it to the Peripheral. We can ask the Peripheral to let us know if the question made it. - This barely scratches the surface of Bluetooth Programming.
Agreed. The purpose of this series (so far) has been to introduce Core Bluetooth. I expect to be exploring Bluetooth programming much further, and will use this SDK as the vehicle for that. - The iOS app doesn’t clean up after itself very well.
The Mac app closes all resource connections when it quits, but the iOS app can “hold the connection open.” That’s really something that would require work on the apps, as well as the SDK. - We’re Not Sure Who’s Asking the Question.
It would be nice to have a label on the Peripheral screen that showed who was asking the question. - The App is Pathetic
Yeah…It’s just enough to show that the SDK works. We can do better. - We could explore Bluetooth “Classic” (BR/EDR) with this project.
We’re using BLE for this, and it’s really the perfect type of task for BLE, but this would also be something that could be done with Bluetooth “Classic.”