How can I modify my board so that my iPhone automatically connects to it

I'm testing my code based on nrf5SDK v17.0.0 with nrf52832 board.

By nrf connect application,I can see the broadcast packet from my board.It looks something like this.

Some of my hypothetical users are iPhone users.Then I  test my board with iphone.

It is OK when I use iphone to connect,pair and bond with my board.

But when I restart the bluetooth on iphone or reenter Bluetooth broadcast range of my board, iphone will not connect to it automatically.But Android phone can connect to it automatically.

Besides,I tried the example that hid_mouse,The example can achieve this effect,but it seem based on whitelist.But I want to support multiple phones to connect and support them reconnect automatically at the same time.

Parents
  • Hi

    The iOS Bluetooth stack will only automatically connect to a devices which has services that are natively supported, such as HID. For devices without those servics, you will need have an app running on the phone that handles the (re-)connection. This is normally requierd anyway for devices with such services in order to use/interact with the services on the device (given that they are not natively supported in iOS).

  • Hi, 你好,

    I think something not mentioned by omission before.In the raw data,you can see the uuid in advertising packet is set as 我想有些东西之前没有被遗漏。在原始数据中,可以看到advertising packet中的uuid被设置为我想有些东西之前没有被遗漏。在原始数据中,可以看到advertising packet中的uuid被设置为我想有些东西之前没有被遗漏。在原始数据中,可以看到advertising packet中的uuid被设置为

    BLE_UUID_HUMAN_INTERFACE_DEVICE_SERVICE.BLE_UUID_HUMAN_INTERFACE_DEVICE_SERVICE。BLE_UUID_HUMAN_INTERFACE_DEVICE_SERVICE。BLE_UUID_HUMAN_INTERFACE_DEVICE_SERVICE。
    The services on my board as follow:我的板子上的服务如下:我的板子上的服务如下:我的板子上的服务如下:
    Just add a nus service to the hid_mouse sample.That is using the same HID service with the hid_mouse sample.They have the same uuid,service,character and HID map.只需向hid_mouse示例添加一个nus服务。这是在hid_mouse示例中使用相同的HID服务。他们有相同的uuid,服务,字符和HID地图。只需向hid_mouse示例添加一个nus服务。这是在hid_mouse示例中使用相同的HID服务。他们有相同的uuid,服务,字符和HID地图。只需向hid_mouse示例添加一个nus服务。这是在hid_mouse示例中使用相同的HID服务。他们有相同的uuid,服务,字符和HID地图。
    I don't know why they are different.So I guess maybe due to whitelist.我不知道它们为什么不一样。所以我想可能是白名单的缘故。我不知道它们为什么不一样。所以我想可能是白名单的缘故。我不知道它们为什么不一样。所以我想可能是白名单的缘故。
    Below is my code,I hope to get further guidance from you.下面是我的代码,希望能得到你的进一步指导。下面是我的代码,希望能得到你的进一步指导。下面是我的代码,希望能得到你的进一步指导。

    我觉得有些东西reload-alertreload-alertreload-alert

  • Hi,

    The list of my Bluetooth services is as follows:

    You can see that the HID service is included, just like the hid_mouse example.But the iPhone won't automatically reconnect to my Bluetooth, which I think may be caused by whitelisted broadcasting.

    Below is my code,I hope to get further guidance from you:

    6457.ETC(test).rar

Reply Children
  • Hi,

    Are you aboe to rre-connect manually? If so, the whitelist is not the problem, as if using whitelist and the peer is not whitelisted, there would be no way to connect.

    However, I notice anothe rimportant point looking at the screenshot, and that is that there is no bond. You need to establish a bond for the reconnection to happen. With Andrioid, an app can explicitly initiate bonding, but with iOS the app cannot do it. One solution can be to make sure that one of the characteristic in a service you use requier security, and then iOS will atomatically initiate bonding when attempting to use that service. (I see that you requier SEC_JUST_WORKS for HID which should be OK though, as proivded that HID is used).

  • Hi,

    At present, it is necessary to manually connect the iPhone to NRF52832, but I hope that the iPhone can automatically connect after bonding.

    The screenshot is to show the services defined in 52832, so there is no bonding.

    I did an experiment, after the iPhone scanned and bond 52832 in the Settings -> Bluetooth interface, turned off the Bluetooth switch and restarted, 52832 always showed no connection, just like the video below:

    As you can see, I had to manually tap after the Bluetooth restarted to trigger the phone's connection to the 52832(Bluetooth name is Anny_ETC_1961).

  • Hi,

    There is unfortunately not much we can do about iOS behaviour as that is controlled by Apple, but I am a bit suprised about this. What happens if you insteead of toggling Bluetooth off and on again on the phone resets the nRF devices? Does the phone re-connect automatically then?

  • Hi,

    When I instead of toggling Bluetooth off and on again on the phone resets the nRF devices,the result is same as above.

    I'm not sure if you noticed that I uploaded the project files earlier. If yes, I hope you can give me some suggestions for improvement according to the code.

    而不是切换蓝牙开关手机重置nRF设备

  • Hi,

    I have looked at your project, and I don't see anything that sticks out. It includes a HID mouse service with a standard UUID as far as I can see, and just has an additional NUS service. I am not able to build your Keil project, but can you test on your end to see if for instance removing the NUS service makes a difference? Or if not, backtrack and see how much and what you need to remove to get the same behaviour as with the HID mouse sample (that iOS automatically reconnects)?

    This is a bit of trial and error, as we do not know what happend internally in iOS and why it decides to not reconnect.

Related