<?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>no HID mouse movement with iPad despite successful BLE connection</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/114704/no-hid-mouse-movement-with-ipad-despite-successful-ble-connection</link><description>Hello, 
 We are trying to use the nrf5340 as a wireless HID mouse over BLE. Our cursor moves just fine on Windows 10, Windows 11, a Mac, and two Android tablets (Lenovo, Amazon). However, we do not see cursor movement on an iPad after connecting the device</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 17 Sep 2024 15:00:58 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/114704/no-hid-mouse-movement-with-ipad-despite-successful-ble-connection" /><item><title>RE: no HID mouse movement with iPad despite successful BLE connection</title><link>https://devzone.nordicsemi.com/thread/502800?ContentTypeID=1</link><pubDate>Tue, 17 Sep 2024 15:00:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e19ac744-354f-4ce2-a07e-0c9cea1bdde5</guid><dc:creator>i_4556</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;We are having the same issue and made an interesting discovery.&lt;/p&gt;
&lt;p&gt;Including a report ID in the report map seems to be the problem with ipad:&lt;/p&gt;
&lt;div style="background-color:#000000;color:#ffffff;font-family:Consolas, &amp;#39;Courier New&amp;#39;, monospace;font-size:14px;font-weight:normal;line-height:19px;white-space:pre;"&gt;
&lt;div&gt;&lt;span style="color:#ffffff;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="color:#b5cea8;"&gt;0x85&lt;/span&gt;&lt;span style="color:#ffffff;"&gt;, &lt;/span&gt;&lt;span style="color:#b5cea8;"&gt;0x01&lt;/span&gt;&lt;span style="color:#ffffff;"&gt;,&lt;/span&gt;&lt;span style="color:#7ca668;"&gt; /* Report Id (1) */&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Except that if you dont include a report ID, or set it to zero, then windows doesnt like it and your device doesnt work with windows.&lt;/p&gt;
&lt;p&gt;Hopefully this helps us move forwards.&lt;/p&gt;
&lt;p&gt;I have not yet exhaustively tried every possible report ID value...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: no HID mouse movement with iPad despite successful BLE connection</title><link>https://devzone.nordicsemi.com/thread/502723?ContentTypeID=1</link><pubDate>Tue, 17 Sep 2024 09:26:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:44e85804-b7cd-489e-91a3-e65006160deb</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;What iPad model are you using?&lt;/p&gt;
&lt;p&gt;Do you have one of these listed here?&amp;nbsp;&lt;a href="https://support.apple.com/en-us/108938"&gt;https://support.apple.com/en-us/108938&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Also, have you enabled&amp;nbsp;AssistiveTouch?&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1726565085151v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: no HID mouse movement with iPad despite successful BLE connection</title><link>https://devzone.nordicsemi.com/thread/502629?ContentTypeID=1</link><pubDate>Mon, 16 Sep 2024 14:06:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5ff53204-d873-4d3c-b57d-ac3289555d6d</guid><dc:creator>dnclem</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;We are only using an HID mouse. Here is the report map for reference:&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static uint8_t report_map[] = {

&amp;#160; &amp;#160; 0x05, 0x01, /* Usage Page (Generic Desktop Ctrls) */
&amp;#160; &amp;#160; 0x09, 0x02, /* Usage (Mouse) */
&amp;#160; &amp;#160; 0xA1, 0x01, /* Collection (Application) */
&amp;#160; &amp;#160; 0x85, 0x01, /* Report Id (1) */
&amp;#160; &amp;#160; 0x09, 0x01, /* Usage (Pointer) */
&amp;#160; &amp;#160; 0xA1, 0x00, /* Collection (Physical) */
&amp;#160; &amp;#160; 0x05, 0x09, /* Usage Page (Button) */
&amp;#160; &amp;#160; 0x19, 0x01, /* Usage Minimum (0x01) */
&amp;#160; &amp;#160; 0x29, 0x03, /* Usage Maximum (0x03) */
&amp;#160; &amp;#160; 0x15, 0x00, /* Logical Minimum (0) */
&amp;#160; &amp;#160; 0x25, 0x01, /* Logical Maximum (1) */
&amp;#160; &amp;#160; 0x95, 0x03, /* Report Count (3) */
&amp;#160; &amp;#160; 0x75, 0x01, /* Report Size (1) */
&amp;#160; &amp;#160; 0x81, 0x02, /* Input (Data,Var,Abs,No Wrap,Linear,...) */
&amp;#160; &amp;#160; 0x95, 0x01, /* Report Count (1) */
&amp;#160; &amp;#160; 0x75, 0x05, /* Report Size (5) */
&amp;#160; &amp;#160; 0x81, 0x03, /* Input (Const,Var,Abs,No Wrap,Linear,...) */
&amp;#160; &amp;#160; 0x05, 0x01, /* Usage Page (Generic Desktop Ctrls) */
&amp;#160; &amp;#160; 0x09, 0x30, /* Usage (X) */
&amp;#160; &amp;#160; 0x09, 0x31, /* Usage (Y) */
&amp;#160; &amp;#160; 0x09, 0x38, /* Usage (Wheel) */
&amp;#160; &amp;#160; 0x16, 0x00, 0x80, /* Logical Minimum (-32768) */ //81???
&amp;#160; &amp;#160; 0x26, 0xFF, 0x7F, /* Logical Maximum (32767) */
&amp;#160; &amp;#160; 0x75, 0x10, /* Report Size (16) */
&amp;#160; &amp;#160; 0x95, 0x03, /* Report Count (3) */
&amp;#160; &amp;#160; 0x81, 0x06, /* Input (Data,Var,Rel,No Wrap,Linear,...) */
&amp;#160; &amp;#160; 0xC0, &amp;#160; &amp;#160; &amp;#160; /* End Collection */
&amp;#160; &amp;#160; 0xC0 &amp;#160; &amp;#160; &amp;#160; &amp;#160;/* End Collection */&lt;/pre&gt;&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;};&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: no HID mouse movement with iPad despite successful BLE connection</title><link>https://devzone.nordicsemi.com/thread/502481?ContentTypeID=1</link><pubDate>Fri, 13 Sep 2024 12:26:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:090d8a63-3e85-4bf6-ae45-a79e48ecfef2</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Hi!&lt;br /&gt;Do you only have HID mouse on the device, or do you have other HID services as well, e.g. mouse+keyboard in the same HID report map?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: no HID mouse movement with iPad despite successful BLE connection</title><link>https://devzone.nordicsemi.com/thread/502383?ContentTypeID=1</link><pubDate>Thu, 12 Sep 2024 20:51:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:daccfcc7-5d9b-4c1e-9b35-5de57af04512</guid><dc:creator>dnclem</dc:creator><description>&lt;p&gt;For reference I have attached the log of another 3rd party wireless mouse that successfully connects to and can move the cursor on the same iPad device.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/sniffer_2D00_mouse.pcapng"&gt;devzone.nordicsemi.com/.../sniffer_2D00_mouse.pcapng&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>