Kodi Community Forum
[LINUX] Generic HID Remote Driver for XBMC (Drivers for XBMC on Linux and XBMC Live) - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: Linux (https://forum.kodi.tv/forumdisplay.php?fid=52)
+---- Thread: [LINUX] Generic HID Remote Driver for XBMC (Drivers for XBMC on Linux and XBMC Live) (/showthread.php?tid=88560)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13


RE: [LINUX] Generic HID Remote Driver for XBMC (Drivers for XBMC on Linux and XBMC Live) - bam80 - 2016-09-11

Isn't it what udev's hwdb intended for? https://cgit.freedesktop.org/systemd/systemd/tree/hwdb/60-keyboard.hwdb


RE: [LINUX] Generic HID Remote Driver for XBMC - Dr.Romca - 2016-09-30

Hello!

First of all thanks for the HID mapper, so far it doesn't work for me, but I hope it will.

I have a MELE F10 Pro remote, which I can't get to scan by HID Mapper - it just says Unable to find specified HID deivce.
I'm trying to use hid_mapper on openelec on RPi3 (installed as a package from an open elec repository), so far I've tried:

First I disabled kodi and lirc services:

Code:
OpenELEC:~ # systemctl stop eventlircd.service
OpenELEC:~ # systemctl stop eventlircd
OpenELEC:~ # systemctl stop kodi
OpenELEC:~ # systemctl stop kodi.service

Code:
hid_mapper --list-devices
Found HID device at /dev/hidraw0
  Manufacturer : 058F312D81A
  Product name : Modiotek USB Headset

Found HID device at /dev/hidraw1
  Manufacturer : 058F312D81A
  Product name : Modiotek USB Headset

Found HID device at /dev/hidraw2
  Manufacturer : 058F312D81A
  Product name : Modiotek USB Headset

I then tried:

Code:
OpenELEC:~ # hid_mapper --learn --manufacturer '058F312D81A' product 'Modiotek USB Headset' --map ''
Unable to find specified HID device
OpenELEC:~ #

OpenELEC:~ # hid_mapper --learn --lookup-id --manufacturer '03e7' product '0d01' --map ''
Unable to find specified HID device
OpenELEC:~ #

OpenELEC:~ # hid_mapper --learn --lookup-id --manufacturer 03e7 product 0d01 --map ''
Unable to find specified HID device
OpenELEC:~ #
Again with no luck Sad

Is it possible some service is grabbing onto the device and does not let hid_mapper to access it?
Do you know what I might be doing wrong?

Thank you!


RE: [LINUX] Generic HID Remote Driver for XBMC (Drivers for XBMC on Linux and XBMC Live) - gark81 - 2017-09-15

Hi all

i've a Mele F10 and a RPi with Libreelec 8 kodi 17.4
i'm trying to set meleF10 to learn and customize my mele's keys
BUT

when i do ssh , enter to hid_mapper path (/storage/.kodi/addons/tools.hid_mapper/bin) and put:
$ ./hid_mapper --list-devices

i get
./hid_mapper: line 1: syntax error: unterminated quoted string

also if i do
/hid_mapper --disable-repetition --learn --manufacturer 1915 --product af11 > meleF10_2017.map

./hid_mapper: line 1: syntax error: unterminated quoted string

is there any problem in hid_mapper "bin" file?Huh