![]() |
Linux [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - 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 [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus (/showthread.php?tid=133071) |
RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - FernetMenta - 2012-10-16 (2012-10-15, 20:48)Isulaiman Wrote: Hi everyone You don't get this kind of output from irw, right? 000000000007004f 00 KEY_RIGHT zotac.conf This means that lirc is still using a wrong driver. RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - FernetMenta - 2012-10-16 @guilmxm ping fritsch, iirc he has the internal receiver working. RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - guilmxm - 2012-10-16 @FernetMenta Ok thanks :-) RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - Jbravo - 2012-10-16 I got an Asus 1501p, including an internal ITE8713 CIR transceiver. To get it working I did the following, suppose the same approach would work on Zotac. Run Code: #sudo dpkg-reconfigure lirc Install ir-keytable Code: #sudo apt-get install ir-keytable Run ir-keytable to find the device in use Code: #ir-keytable Should return something like this; Code: xbmc@ubuntu:/dev/input$ ir-keytable My device is /dev/input/event2, this may change if you add/remove input devices. So make sure that you have a symlink to your device. Go to /dev/input and list files Code: #cd /dev/input If you are lucky there is a by-id folder, containing an symlink to your device, if not create a symlink according to this post; http://parker1.co.uk/mythtv_tips.php , Make the LIRC Device Static - older kernels Then change your LIRC config to use the new device Code: # sudo nano /etc/lirc/hardware.conf REMOTE_DEVICE="/dev/input/irremote" For some reason Lirc disables all rc protocols except LIRC, even when using dev input. Make sure RC-6 is enabled as well. The easy fix is to change this directly in /etc/init.d/lirc: Code: in_kernel_support() { Code: echo "+RC-6" > $file After this reboot (restart of lirc and udev should perhaps be enough). Check for input events with ir-keytable: Code: #sudo ir-keytable -t irw should now report key events from devinput: Code: irw devinput is already included as device in /usr/share/xbmc/system/Lircmap.xml but some keys are missing (e.g the Windows key and Power). Just add them under the "linux-input-layer" device. RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - fritsch - 2012-10-16 On popular request by guilmxm Zotac AD-10 Internal remote. Everything is no problem at all with the build in lirc: Code: sudo apt-get install lirc replace the following files Code: # /etc/lirc/hardware.conf lircd.conf Code: # /etc/lirc/lircd.conf Some remappings for xbmc: /home/xbmc/.xbmc/userdata/Lircmap.xml Code: <lircmap> And some additional remaps as I like them. /home/xbmc/.xbmc/userdata/keymaps/remap.xml Code: <keymap> RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - guilmxm - 2012-10-16 @Jbravo @fritsch Thank you very much for your quick replies, in need i think the request is popular as many people have issues with the Zotac external IR... RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - guilmxm - 2012-10-17 @fritsch Tested and approved! I've been looking for this to work for a while... THANK YOU ![]() RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - Isulaiman - 2012-10-18 @FernetMenta I get the following in irw 0000000000007004f 00 KEY_RIGHT zotac.conf RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - guilmxm - 2012-10-19 (2012-10-18, 23:03)Isulaiman Wrote: @FernetMenta hi, that's just a suggestion but i think you should restart from the begining, carefully checking each step see my post : http://youresuchageek.blogspot.fr/2012/06/xbmc-install-and-config-howto-for-linux.html go to step 13 RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - FernetMenta - 2012-10-19 (2012-10-18, 23:03)Isulaiman Wrote: @FernetMenta The output looks good. The problem is either your Lircmap.xml or you forgot to create this symlink: sudo ln -s /var/run/lirc/lircd /dev/lircd XBMC expects the pid file in /dev/lircd RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - Isulaiman - 2012-10-20 So I added the input selection for the remote again and the remote still works but the same buttons don't work. Like the pause button or the home button? RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - derdigge - 2012-10-20 Hello Guys! I have everything done like discribed in Post #10. Code: i have a: My configs are ecxactly those of Post #10 includin udev and such: Code: root@Glotzefiez:~# cat /etc/udev/rules.d/10-local.rules but irw does not! no such file or directory?!: Code: root@Glotzefiez:/etc/lirc# irw dmesg on plugin: Code: [ 653.751058] usb 2-1.4: new low-speed USB device number 4 using ehci_hcd does anyone see my mistake? RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - FernetMenta - 2012-10-20 post 10 is incomplete, it does not show how to start lirc. I use the following upstart script: /etc/init/lirc.conf Code: description "lirc" This waits for ir-ready fired by the udev rule. You can manually start lirc with "sudo start lirc" or stop it with "sudo stop lirc" hardware.conf as mentioned in post 10 is not required, this is something introduced by the packagers of lirc. By default lirc creates its pid file in varr/run/lirc/lircd. XBMC expects it in /dev/lircd (again introduced by packagers). You need to create a symlinc: ln -s /var/run/lirc/lircd /dev/lircd RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - derdigge - 2012-10-21 Thank you for your reply! That maked ist work for me! If i had read this whole post, as i shoule, the answer was allready there..... Is there a way to wake up from s3?? RE: [xbmcbuntu] [SOLVED] some buttons not working PHILIPS MCE USB IR Receiver-Spinel plus - Isulaiman - 2012-10-23 Anyone have any suggestions? Went through the steps again and still not all the buttons work on the remote. Any help would be great. Thanks all |