<div dir="ltr">HI!<br>ReMoko works quote nice on my freerunner with fso (some times i have to restart it many times before it runs well), but I have problems on the PC side.<br>If I use hidd --connect &lt;bt neo address&gt; it runs fine, but if I use dbus CreateConnection method it fails.<br>
As hidd is deprecated and provided only for compatibility I&#39;d like to know if the problems is in bluez or in ReMoko hid profile emulation.<br><br>If someone has a bt keyboard may try if this simple python script works (from <a href="http://wiki.bluez.org">wiki.bluez.org</a>)?<br>
<br>import dbus<br>bus = dbus.SystemBus()<br># service activation<br>bmgr = dbus.Interface(bus.get_object(&#39;org.bluez&#39;, &#39;/org/bluez&#39;), &#39;org.bluez.Manager&#39;)<br>bus_id = bmgr.ActivateService(&#39;input&#39;)<br>
imgr = dbus.Interface(bus.get_object(bus_id, &#39;/org/bluez/input&#39;), &#39;org.bluez.input.Manager&#39;)<br><br># device creation<br>path = imgr.CreateDevice(&#39;xx:xx:xx:xx:xx:xx&#39;)<br>idev = dbus.Interface (bus.get_object(bus_id, path), &#39;org.bluez.input.Device&#39;)<br>
<br># host initiated connection<br>idev.Connect()<br><br><br>replace xx... with your keyboard bt address, and with neo bt address after having remoko launched.<br><br>Thanks<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Nicola<br></div>