Help with mce remote
|
18th Aug, 2013, 02:08 AM
Post: #1
|
|||
|
|||
Help with mce remote
I am new to the pi. My first install on it was raspbian. Got the remote working quite easily, got me quite surprised, but not happy with xbmc on it. So now I try xbian.
It make me crazy, I can't get the remote working except the arrows and an enter key. I tried to irrecord a couple of buttons, but lirc just ignores my config file, arrows continue to work. What bugs me most is Irw does not issue any output. As if lirc output socket is not the default. What should I be looking for? How do I debug the lirc input chain? I guess that if irw would have shown me socket outputs, xbmc would work as well, how come irw does not show me anything, yet 5 keys do work with xbmc? I'm using model b pi, with xbian 1.1 beta Thanks, Dan |
|||
18th Aug, 2013, 02:42 AM
Post: #2
|
|||
|
|||
Re: Help with mce remote
What is the specific IR module your using?
Post "dmesg" and "lsusb - v" to pastebin and provide links please. Where are you adding your configuration changes? Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us. |
|||
18th Aug, 2013, 03:20 AM
Post: #3
|
|||
|
|||
RE: Help with mce remote | |||
18th Aug, 2013, 03:26 AM
Post: #4
|
|||
|
|||
RE: Help with mce remote
That is just the reason that I moved to Raspbian.
This item (of the non-working buttons om the MCE emote) did not lead to an adequate solution on this forum. |
|||
18th Aug, 2013, 03:52 AM
Post: #5
|
|||
|
|||
RE: Help with mce remote
(18th Aug, 2013 03:26 AM)JeHaLi Wrote: That is just the reason that I moved to Raspbian.@JeHaLi Your comment is unhelpful. Raspbian and Xbian are too different solutions Raspbian is a desktop environment. Xbian is a multimedia environment. How you "moved" to it is a mystery as they are two different things - chalk and cheese. @Dddb Have you tried updating - there was a problem with lirc - that should have been fixed Please read before you post How to post a log file If you liked my help, click on "Thanks" to show your appreciation.
|
|||
18th Aug, 2013, 04:16 AM
Post: #6
|
|||
|
|||
Re: Help with mce remote
Try this:
Terminal sudo echo lirc > /sys/class/rc/rc0/protocols sudo cat /etc/lirc/remotes/mceusb.conf >> /etc/lirc/lircd.conf sudo killall -HUP lircd sudo service xbmc restart Try your remote again, if it still doesn't work we will try something else. Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us. |
|||
18th Aug, 2013, 03:40 PM
Post: #7
|
|||
|
|||
RE: Help with mce remote
Yes, this was my first try - using the xbian canned files, both hardware.conf and the mceusb included in lircd.conf
Btw, why would I need to restart xbmc? |
|||
18th Aug, 2013, 06:33 PM
Post: #8
|
|||
|
|||
Re: RE: Help with mce remote
(18th Aug, 2013 03:40 PM)Dbbd Wrote: Yes, this was my first try - using the xbian canned files, both hardware.conf and the mceusb included in lircd.conf On occasion I have noticed XBMC fails to respond to the remote after configuration changes, I never researched why. Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us. |
|||
18th Aug, 2013, 07:16 PM
Post: #9
|
|||
|
|||
RE: Help with mce remote
But why does irw show nothing coming out of the lircd socket?
I think something is wrong way before we start to talk about xbmc. |
|||
19th Aug, 2013, 01:53 AM
Post: #10
|
|||
|
|||
Re: Help with mce remote
Have you ran apt-get update and apt-get upgrade yet?
Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us. |
|||
20th Aug, 2013, 03:42 AM
Post: #11
|
|||
|
|||
RE: Help with mce remote
It was a slip of the pen: I meant Raspbmc
But I will give it another try to get that MCE remote alive with Xbian. All the above mentioned suggestions have I already done |
|||
23rd Aug, 2013, 12:59 AM
Post: #12
|
|||
|
|||
RE: Help with mce remote
(19th Aug, 2013 01:53 AM)f1vefour Wrote: Have you ran apt-get update and apt-get upgrade yet?Results. Eventually I got to it, did update & upgrade as you suggested and it now works fine. Thanks BTW, while searching for a solution I came to understand the mceusb is now part of the kernel input subsystem, and that lirc is not really necessary anymore. There's a tool called ir-keytable and a procedure to set up an ir remote without lirc here. Is there a reason xbian continues to use lirc? Isn't it more simple to use this ir-keytables? Thanks, Dan |
|||
23rd Aug, 2013, 01:25 AM
Post: #13
|
|||
|
|||
Re: RE: Help with mce remote
(23rd Aug, 2013 12:59 AM)Dbbd Wrote:(19th Aug, 2013 01:53 AM)f1vefour Wrote: Have you ran apt-get update and apt-get upgrade yet?Results. Eventually I got to it, did update & upgrade as you suggested and it now works fine. Thanks Yours is a specific case, lirc is necessary for GPIO IR receivers. I didn't know anything about mceusb as I'm GPIO, likely it is the same for mk01 and other Xbian developers (not having that hardware). Great information, thanks for providing your resolution. Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us. |
|||
25th Aug, 2013, 08:52 PM
Post: #14
|
|||
|
|||
RE: Help with mce remote
Specific case it is not - it covers all USB remotes.
The solution above failed to hold. After reboot it stopped working again. What does work is as follows: get rid of Lirc. Remove it from the default services. install ir-keytables (apt-get install ir-keytables) copy the appropriate keytable to /etc/rc_keytables modify the keytable as you need - it creates keyboard events, so you can tailor your remote to the keys expected by xbmc. add the command "ir-keytable -c -w /etc/rc_keytables/<your keytable> And that's it. It is simple, it survives reboots. It doe NOT require changing the lirc keyboard.xml AND, it is faster - looks like the reduced translation chain makes the pi respond to the remote keys faster. This however is my subjective, unmeasured feeling. Dan |
|||
26th Aug, 2013, 02:45 AM
Post: #15
|
|||
|
|||
Re: RE: Help with mce remote
(25th Aug, 2013 08:52 PM)Dbbd Wrote: Specific case it is not - it covers all USB remotes. You misunderstood what I was saying. Specific case meaning most USB adapters do work with lirc, the linked ir-keytable method should be included in XBian because some adapters don't work well with lirc. I wasn't disregarding your information. Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us. |
|||
« Next Oldest | Next Newest »
|