<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>How to test BLE keyboard on iOS7?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/2166/how-to-test-ble-keyboard-on-ios7</link><description>Hi all, 
 I noticed that there are some instructions for testing keyboard on win8.1 or USB dongle.
Can I test it on my iPhone5s which is iOS7.0.4 now? 
 Regards,
Aaron</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 23 Apr 2014 12:50:17 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/2166/how-to-test-ble-keyboard-on-ios7" /><item><title>RE: How to test BLE keyboard on iOS7?</title><link>https://devzone.nordicsemi.com/thread/9171?ContentTypeID=1</link><pubDate>Wed, 23 Apr 2014 12:50:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:272c47c0-f2f5-4c4c-a8e4-e69e145893d3</guid><dc:creator>H&amp;#229;kon Alseth</dc:creator><description>&lt;p&gt;Not without modifying the descriptor and the rest of the application.
However, you can use this mouse-example:
&lt;a target="_blank" href="https://devzone.nordicsemi.com/index.php/discussions/how-can-i-send-a-media-button-data-with-hid_mouse_demo#reply-3984" rel="nofollow"&gt;https://devzone.nordicsemi.com/index.php/discussions/how-can-i-send-a-media-button-data-with-hid_mouse_demo#reply-3984&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Best regards
Håkon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to test BLE keyboard on iOS7?</title><link>https://devzone.nordicsemi.com/thread/9170?ContentTypeID=1</link><pubDate>Wed, 23 Apr 2014 12:39:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cb059cef-6226-4cc3-9a55-cfa995ae69e8</guid><dc:creator>aaronxu</dc:creator><description>&lt;p&gt;Thank you, Alseth.&lt;/p&gt;
&lt;p&gt;By the way, can I control iPhone volume up and down through this application?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to test BLE keyboard on iOS7?</title><link>https://devzone.nordicsemi.com/thread/9169?ContentTypeID=1</link><pubDate>Wed, 23 Apr 2014 12:05:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:445c0687-c5d8-465d-b6e3-b5ddb0000acb</guid><dc:creator>H&amp;#229;kon Alseth</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have to apologize. The ble_app_hids_keyboard from SDK v5.2 does not work out-of-the-box with iOS.
I had been testing with the former SDK-project.&lt;/p&gt;
&lt;p&gt;The fix is either to roll-back to the ble_app_hids_keyboard from SDK v5.1, or do these changes:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
#define INPUT_REP_REF_ID                 0
#define OUTPUT_REP_REF_ID             0

&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;and comment out &amp;quot;Input Report&amp;quot; from the USB descriptor:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
    static uint8_t report_map_data[] =
    {
        0x05, 0x01,                 // Usage Page (Generic Desktop)
        0x09, 0x06,                 // Usage (Keyboard)
        0xA1, 0x01,                 // Collection (Application)
        //0x85, 0x01,                 // Input Report - Report ID 1
        ....

&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;It&amp;#39;s been reported internally, and I am very sorry for the inconvenience.&lt;/p&gt;
&lt;p&gt;Best regards
Håkon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to test BLE keyboard on iOS7?</title><link>https://devzone.nordicsemi.com/thread/9172?ContentTypeID=1</link><pubDate>Fri, 11 Apr 2014 02:30:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b38225e5-a7e3-4d97-9d97-14964c8d79a7</guid><dc:creator>ldl212</dc:creator><description>&lt;p&gt;I have the  same problem&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to test BLE keyboard on iOS7?</title><link>https://devzone.nordicsemi.com/thread/9168?ContentTypeID=1</link><pubDate>Thu, 10 Apr 2014 23:21:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d0d0e760-5fc8-4774-b6b4-2a2e4ec8b506</guid><dc:creator>aaronxu</dc:creator><description>&lt;p&gt;Hi Håkon,&lt;/p&gt;
&lt;p&gt;I am testing &amp;quot;Nordic\nrf51822\Board\nrf6310\s110\ble_app_hids_keyboard&amp;quot;.
And I followed &amp;quot;HID Keyboard Application&amp;quot; part under &amp;quot;nRF51 SDK&amp;quot; -&amp;gt; &amp;quot;Example&amp;quot; -&amp;gt; &amp;quot;BLE Peripheral&amp;quot; in SDK5.2 documentation.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Compile and program the application, the Advertising LED is lit.&lt;/li&gt;
&lt;li&gt;On the Windows 8 PC,and connect to the device named &amp;#39;Nordic_Keyboard&amp;#39;. The Connected LED was lit, and the Advertising LED was off.&lt;/li&gt;
&lt;li&gt;Open a text editing application.&lt;/li&gt;
&lt;li&gt;Press Button 0 on the board. And no text show on the text editor.&lt;/li&gt;
&lt;li&gt;LED2 is lit and text &amp;#39;capson&amp;#39; will be seen on the text editor window on the PC, if I turn Caps-Lock On on the PC. And also the Caps-Lock Off.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;So I think BLE keyboard was connected, but why no text show on the text editor?
Unfortunately, I don&amp;#39;t have USB Dongle for now.&lt;/p&gt;
&lt;p&gt;Anyone else can test it?&lt;/p&gt;
&lt;p&gt;BR
Aaron&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to test BLE keyboard on iOS7?</title><link>https://devzone.nordicsemi.com/thread/9167?ContentTypeID=1</link><pubDate>Thu, 10 Apr 2014 10:09:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7f7300ca-700b-4644-8202-1ee669fe0add</guid><dc:creator>H&amp;#229;kon Alseth</dc:creator><description>&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;What example are you testing with?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Is there a dropped connection or similar?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do you see any asserts by the application?
Check function &amp;quot;app_error_handler&amp;quot; and comment in &amp;quot;ble_debug_assert_handler&amp;quot; to get more information.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Does the application work as expected in MasterControlPanel?&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Best regards
Håkon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to test BLE keyboard on iOS7?</title><link>https://devzone.nordicsemi.com/thread/9166?ContentTypeID=1</link><pubDate>Thu, 10 Apr 2014 09:09:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:72435b7c-8e94-421d-b4be-e9f4f88cdbec</guid><dc:creator>gootoomoon</dc:creator><description>&lt;p&gt;I meet the same problem wait for answer&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to test BLE keyboard on iOS7?</title><link>https://devzone.nordicsemi.com/thread/9165?ContentTypeID=1</link><pubDate>Thu, 10 Apr 2014 03:37:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5fe0fcc4-9c6d-4663-a755-4cac8be0763d</guid><dc:creator>aaronxu</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I just tested it on Win8.1 and iOS7.0.4, but both of them are failed.&lt;/p&gt;
&lt;p&gt;Any advise?&lt;/p&gt;
&lt;p&gt;BR
Aaron&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to test BLE keyboard on iOS7?</title><link>https://devzone.nordicsemi.com/thread/9164?ContentTypeID=1</link><pubDate>Wed, 09 Apr 2014 12:12:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b2d2decc-7ff0-4de4-9e0a-ede3a7ccb4ab</guid><dc:creator>H&amp;#229;kon Alseth</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Yes, HID over GATT is working with iOS 7.x.
Go to bluetooth settings, scan, and then connect to the HID-device.
Open up a browser/textmsg or similar and anything you type should show up.&lt;/p&gt;
&lt;p&gt;Best regards
Håkon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>