Was wondering how hard it would be to add support for a diy BLE source or sources to Racechrono. I am sure that others will also want this feature now that there is an iOS version. I will admit I know nothing about BLE and what is required to get communication working with iOS. There are people from the Arduino community and others who have gotten this to work with their own custom iOS apps. I was hoping that one of the cheap modules that support serial data input could be used with Racechrono, like the HM10, HM11, etc. I currently have a HM10 to try things out.
Here is a link to two different sites with different modules.
This site shows the HM10 with flight controller working with iOS.
http://www.hangar42.nl/eaze-tutorial#more-344This site sells a different BLE module that also allows serial input.
http://redbearlab.com/blemini/
Comments
http://www.instructables.com/id/IPhone-to-Arduino-using-Bluetooth-40-
The right way to do it IMHO is write binary (not text!) data frames to Characteristics.
Problem is that the default maximum transmission unit (MTU) is only 20 bytes. I hear larger can be unreliable. You can fit 4-5 channels to 20 bytes, so it's not enough for all DIY devices. Options would be either have larger MTU or several Characteristics. To be able to define the details how to make this "multi-characteristic" transmission (or any other solution) reliable and fast, would need either some deep BLE knowledge and/or lot of testing.
Also to support I'd need to build one my self. I don't mind buying Arduino and some parts but I don't really have time to write the code for it. So for this to happen would be someone writing shopping list, build instructions, Arduino code and client code (Android or iOS) for testing the bandwidth and reliability...
https://www.adafruit.com/product/2829
Default BLE Service on it is UART and you can stream NMEA pretty quickly. I wrote the code to simulate a GPS and stream the data. And sample code to read it on android is here,
https://github.com/adafruit/Adafruit_Android_BLE_UART