Difference between revisions of "Xbox DVD Dongle"

From MythTV Official Wiki
Jump to: navigation, search
(Moved page to a better title)
 
Line 1: Line 1:
 
This howto focuses on howto get the Xbox DVD dongle to work on a standard pc.
 
This howto focuses on howto get the Xbox DVD dongle to work on a standard pc.
 
==Device information==
 
==Device information==
TODO
+
Supported remotes:
 
+
:*Xbox DVD remote (duh)
 +
:*Remotes with the rca protocal ( I have not tested this yet! )
 +
:*...
 +
More soon
 
==Setup==
 
==Setup==
 
===Wiring===
 
===Wiring===
Line 13: Line 16:
 
Now just run
 
Now just run
 
  # emerge lircd
 
  # emerge lircd
 +
Now use the config from the bottom of the page.
 +
The next thing you need to do is test to see if it works. Because it is using a new driver if you have it plugged in then you need to unplug it and plug it back in. Now start lircd
 +
# /etc/init.d/lircd start
 +
then run
 +
# irw
 +
and watch to see if your button presses are showing up!
 +
 +
 +
==/etc/lircd.conf==
 +
<pre>
 +
...
 +
# LIRCD configuration file for Xbox DVD Kit
 +
#
 +
# Marko Friedemann <mfr@bmx-chemnitz.de>
 +
#
 +
#
 +
# brand:            Microsoft
 +
# model:            Xbox DVD Remote
 +
# supported devices: Xbox DVD Remote via xpad-ir driver
 +
#
 +
# comment:          EXPERIMENTAL
 +
#
 +
 +
begin remote
 +
 +
    name  XboxDVDDongle
 +
    bits          8
 +
 +
    begin codes
 +
 +
        SELECT          0x0b
 +
        UP              0xa6
 +
        DOWN            0xa7
 +
        RIGHT          0xa8
 +
        LEFT            0xa9
 +
        INFO            0xc3
 +
 +
        9              0xc6
 +
        8              0xc7
 +
        7              0xc8
 +
        6              0xc9
 +
        5              0xca
 +
        4              0xcb
 +
        3              0xcc
 +
        2              0xcd
 +
        1              0xce
 +
        0              0xcf
 +
 +
        DISPLAY        0xd5
 +
        BACK            0xd8
 +
        SKIP+          0xdd
 +
        SKIP-          0xdf
 +
        STOP            0xe0
 +
        REVERSE        0xe2
 +
        FORWARD        0xe3
 +
        TITLE          0xe5
 +
        PAUSE          0xe6
 +
        PLAY            0xea
 +
        MENU            0xf7
 +
 +
      end codes
  
 +
end remote
 +
</pre>
 
MORE SOON!
 
MORE SOON!

Revision as of 08:30, 5 March 2007

This howto focuses on howto get the Xbox DVD dongle to work on a standard pc.

Device information

Supported remotes:

  • Xbox DVD remote (duh)
  • Remotes with the rca protocal ( I have not tested this yet! )
  • ...

More soon

Setup

Wiring

Some information about wiring the DVD dongle to the pc can be found here.

Installation

Gentoo

If you are running Gentoo then be thankfull the patch for the Xbox DVD dongle is in the portage. Add this line to /etc/make.conf

LIRC_DEVICES="xboxusb"

Now just run

# emerge lircd

Now use the config from the bottom of the page. The next thing you need to do is test to see if it works. Because it is using a new driver if you have it plugged in then you need to unplug it and plug it back in. Now start lircd

# /etc/init.d/lircd start

then run

# irw

and watch to see if your button presses are showing up!


/etc/lircd.conf

...
# LIRCD configuration file for Xbox DVD Kit
#
# Marko Friedemann <mfr@bmx-chemnitz.de>
#
#
# brand:             Microsoft
# model:             Xbox DVD Remote
# supported devices: Xbox DVD Remote via xpad-ir driver
#
# comment:           EXPERIMENTAL
#

begin remote

    name  XboxDVDDongle
    bits           8

    begin codes

        SELECT          0x0b
        UP              0xa6
        DOWN            0xa7
        RIGHT           0xa8
        LEFT            0xa9
        INFO            0xc3

        9               0xc6
        8               0xc7
        7               0xc8
        6               0xc9
        5               0xca
        4               0xcb
        3               0xcc
        2               0xcd
        1               0xce
        0               0xcf

        DISPLAY         0xd5
        BACK            0xd8
        SKIP+           0xdd
        SKIP-           0xdf
        STOP            0xe0
        REVERSE         0xe2
        FORWARD         0xe3
        TITLE           0xe5
        PAUSE           0xe6
        PLAY            0xea
        MENU            0xf7

      end codes

end remote

MORE SOON!