Forum
  • Search
  • Member List
  • Calendar
Hello There, Guest! Login Register — Login with Facebook

Hama MCE Remote: does not care about lirc
Thank you for your donation

Pages (2): 1 2 Next »
Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Threaded Mode | Linear Mode
Hama MCE Remote: does not care about lirc
19th Sep, 2013, 05:07 AM
Post: #1
kometa_triatlon Offline
Registered
Posts: 12
Joined: Sep 2013
Reputation: 1
Hama MCE Remote: does not care about lirc
Hi guys,

I have a Hama MCE remote (this one), which works almost perfectly out of the box.

However, there is a small issue that bothers me: the volume down button does not work, while the volume up does.

This tutorial was of little help for me. First, mode2 produces this:

Code:
mode2: could not get file information for /dev/lirc0
mode2: default_init(): No such file or directory

irw does not produce any output at all (the remote is working though)

When I stop lirc service, the remote still works, so I assume it works as a "generic USB device" (whatever does it mean...).

Could somebody tell me, how does the remote work and how I can control its mapping?

Thanks in advance.

lsusb output:
Code:
Bus 001 Device 002: ID 0424:9512 Standard Microsystems Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp.
Bus 001 Device 004: ID 05a4:9881 Ortek Technology, Inc.
Bus 001 Device 014: ID 05e3:0608 Genesys Logic, Inc. USB-2.0 4-Port HUB
Bus 001 Device 015: ID 1997:0409  
Bus 001 Device 016: ID 1058:0704 Western Digital Technologies, Inc. Passport External HDD

dmesg output
devices
lsusb -v
Find all posts by this user
Quote this message in a reply
21st Sep, 2013, 09:35 PM
Post: #2
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: Hama MCE Remote: does not care about lirc
you can try installing "ir-keytable" package.

with it you can load / replace the key map which kernel is using (when you disable lirc). you can also copy any from preinstalled maps and edit as you wish (the one key not working for you).

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
23rd Sep, 2013, 01:37 AM
Post: #3
kometa_triatlon Offline
Registered
Posts: 12
Joined: Sep 2013
Reputation: 1
RE: Hama MCE Remote: does not care about lirc
(21st Sep, 2013 09:35 PM)mk01 Wrote:  you can try installing "ir-keytable" package.

with it you can load / replace the key map which kernel is using (when you disable lirc). you can also copy any from preinstalled maps and edit as you wish (the one key not working for you).

Thanks! I found a lot of topic devoted to ir-keytable.
However, when running it, I got the message:

Code:
/sys/class/rc/: No such file or directory
Find all posts by this user
Quote this message in a reply
29th Sep, 2013, 12:53 PM
Post: #4
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: Hama MCE Remote: does not care about lirc
/sys/class/rc will appear first when rc_core module is loaded - which is triggered by other higher level device related modules.

if you starts lirc (which 'almost' works for you), what modules gets loaded - use
Code:
lsmod
to see it? with the module loaded manually (but lirc not started), /sys/class/rc should be there and ir-keytable should be able to get and display some info.

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
1st Oct, 2013, 05:45 AM
Post: #5
kometa_triatlon Offline
Registered
Posts: 12
Joined: Sep 2013
Reputation: 1
RE: Hama MCE Remote: does not care about lirc
(29th Sep, 2013 12:53 PM)mk01 Wrote:  /sys/class/rc will appear first when rc_core module is loaded - which is triggered by other higher level device related modules.

if you starts lirc (which 'almost' works for you), what modules gets loaded - use
Code:
lsmod
to see it? with the module loaded manually (but lirc not started), /sys/class/rc should be there and ir-keytable should be able to get and display some info.

Here is the lsmod output:

Code:
Module                  Size  Used by
vfat                    8732  0
fat                    46390  1 vfat
frandom                 3892  4
fuse                   63488  3
loop                   14307  2
joydev                  8695  0
mousedev                9415  0
zram                    8779  1
btrfs                 823939  1
crc32c                  1257  1
libcrc32c                778  1 btrfs
zlib_inflate           14442  1 btrfs
zlib_deflate           20472  1 btrfs

It is the same when lirc is start or stopped. So, no rc_core there....
Find all posts by this user
Quote this message in a reply
1st Oct, 2013, 05:54 AM
Post: #6
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: Hama MCE Remote: does not care about lirc
modprobe mceusb …. ?

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
1st Oct, 2013, 06:19 AM
Post: #7
kometa_triatlon Offline
Registered
Posts: 12
Joined: Sep 2013
Reputation: 1
RE: Hama MCE Remote: does not care about lirc
(1st Oct, 2013 05:54 AM)mk01 Wrote:  modprobe mceusb …. ?

It does not know such a command Huh
apt-cache search modprobe does not give anything.
kmod and module-init-tools are installed...
Find all posts by this user
Quote this message in a reply
1st Oct, 2013, 06:22 AM
Post: #8
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: Hama MCE Remote: does not care about lirc
are you running it under root or with sudo ?

always forget to tell this. so

sudo modprobe mceusb

?

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
1st Oct, 2013, 06:25 AM
Post: #9
kometa_triatlon Offline
Registered
Posts: 12
Joined: Sep 2013
Reputation: 1
RE: Hama MCE Remote: does not care about lirc
(1st Oct, 2013 06:22 AM)mk01 Wrote:  are you running it under root or with sudo ?

always forget to tell this. so

sudo modprobe mceusb

?

Oh, now it works Smile
But the output is just empty.
Find all posts by this user
Quote this message in a reply
1st Oct, 2013, 06:27 AM
Post: #10
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: Hama MCE Remote: does not care about lirc
modprobe doesn't return anything. it just loads the module.

you can check with lsmod or again check dmesg output.

or even /sys/class/rc ??

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
1st Oct, 2013, 06:35 AM
Post: #11
kometa_triatlon Offline
Registered
Posts: 12
Joined: Sep 2013
Reputation: 1
RE: Hama MCE Remote: does not care about lirc
Oh, thanks, now I can see rc_core and /sys/class/rc

But when running ir-keytable I got the message:

Couldn't find any node at /sys/class/rc/rc*.
Find all posts by this user
Quote this message in a reply
1st Oct, 2013, 08:48 AM
Post: #12
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: Hama MCE Remote: does not care about lirc
ok and what about putting mceusb into /etc/modules and trying the old fashioned lirc way ?

I have the feel I won't be much more help there. As haven't had in my hands anything else as CEC. Will google a bit later.

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
2nd Oct, 2013, 02:46 AM
Post: #13
kometa_triatlon Offline
Registered
Posts: 12
Joined: Sep 2013
Reputation: 1
RE: Hama MCE Remote: does not care about lirc
(1st Oct, 2013 08:48 AM)mk01 Wrote:  ok and what about putting mceusb into /etc/modules and trying the old fashioned lirc way ?

I have the feel I won't be much more help there. As haven't had in my hands anything else as CEC. Will google a bit later.

I did that, both lirc_dev and mceusb modules are loaded after restart, but mode2 still causes the same error message, and irw just produce nothing.

I am just wondering, HOW does the remote work? In contrast to other users, who are trying to make it work, I am trying to break it Smile

I found smth here: MCE Remote, will try to repeat it.

I guess it works rather as a keyboard, not as IR remote. That is why lirc does not influence on it.
Find all posts by this user
Quote this message in a reply
3rd Oct, 2013, 05:11 AM
Post: #14
kometa_triatlon Offline
Registered
Posts: 12
Joined: Sep 2013
Reputation: 1
RE: Hama MCE Remote: does not care about lirc
BTW, on RasPlex the volume down button works fine.
Maybe it is a problem with XBMC itself?
Find all posts by this user
Quote this message in a reply
3rd Oct, 2013, 10:26 AM
Post: #15
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: Hama MCE Remote: does not care about lirc
Do you have the option "remote is sending key presses" turned on in XBMC ?

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Pages (2): 1 2 Next »
Post Reply 


Possibly Related Threads...
Thread: Author Replies Views: Last Post
  Use a remote without LIRC mikecar 1 8,272 12th May, 2015 08:00 PM
Last Post: mikecar
  GMYLE / HAMA - Vista MCE Remote Config naverave 9 29,061 6th Mar, 2014 02:42 AM
Last Post: naverave
  [PROBLEM] Hama MCE Remote Control Porco 1 8,520 14th Oct, 2013 11:03 AM
Last Post: mk01
  [PROBLEM] HAMA MCE Remote dennis 5 18,261 15th Apr, 2013 12:52 AM
Last Post: dennis

  • View a Printable Version
  • Send this Thread to a Friend
  • Subscribe to this thread
Forum Jump:

Current time: 19th May, 2025, 10:20 PM Powered By MyBB, © 2002-2025 MyBB Group.