EADemo示例始终显示“No Accessories connected”

时间:2017-06-06 14:01:40

标签: ios mfi wac

我有MFI程序许可证,我正在尝试实施WAC功能(无线附件配置)。每次我运行EADemo应用程序时,无论是在真正的iPhone上还是在模拟器上,我都没有连接配件,虽然我通过xCode的HomeKit工具显示配件有什么解决方案吗?

PS:在我的info.plist中,我不知道模拟配件的协议是什么。 enter image description here

1 个答案:

答案 0 :(得分:1)

添加Info.plist

我在info.plist中添加了以下内容。 EADemo应用程序正在我身边。确保您的MFi设备已通过设备设置进行连接。

<key>UISupportedExternalAccessoryProtocols</key>
    <array>
        <string>com.example.apple-samplecode.data</string>
        <string>com.yourcompany.serialtunnel.data</string>
        <string>com.apple.p1</string>
        <string>com.demo.control</string>
        <string>com.demo.data</string>
    </array>

还需要更改 enter image description here