Difference between revisions of "Xbox DVD Dongle"

From MythTV Official Wiki
Jump to: navigation, search
(/etc/lircd.conf)
m
 
(8 intermediate revisions by 4 users not shown)
Line 1: Line 1:
This howto focuses on howto get the Xbox DVD dongle to work on a standard pc.
+
{{TOCright}}
==Device information==
+
This howto focuses on HOWTO get the Xbox DVD dongle to work on a standard pc. Also see [[XBOX_DVD_IR_Receiver]]
 +
=Device information=
 
Supported remotes:
 
Supported remotes:
 
:*Xbox DVD remote (duh)
 
:*Xbox DVD remote (duh)
:*Remotes with the rca protocal ( I have not tested this yet! )
+
:*Remotes with the rca dvd protocol
:*...
+
 
More soon
+
=Setup=
==Setup==
+
==Wiring==
===Wiring===
 
 
Some information about wiring the DVD dongle to the pc can be found [http://dlangenberg.googlepages.com/diycomputerremote here].
 
Some information about wiring the DVD dongle to the pc can be found [http://dlangenberg.googlepages.com/diycomputerremote here].
===Installation===
+
==Installation==
====Gentoo====
+
===Gentoo===
If you are running Gentoo then be thankfull the patch for the Xbox DVD dongle is in the portage.
+
If you are running Gentoo then be thankful the patch for the Xbox DVD dongle is in the portage.
 
Add this line to '''/etc/make.conf'''
 
Add this line to '''/etc/make.conf'''
 
  LIRC_DEVICES="xboxusb"
 
  LIRC_DEVICES="xboxusb"
 +
 +
{{Note box|atiusb and xboxusb conflict with each other and only one will work at the same time.}}
 +
 +
 
Now just run
 
Now just run
 
  # emerge lircd
 
  # emerge lircd
Line 23: Line 27:
 
and watch to see if your button presses are showing up!
 
and watch to see if your button presses are showing up!
  
 
+
= Configuration =
== Configuration ==
+
{{Code box|/etc/lircd.conf|
{{Box File|/etc/lircd.conf|
 
 
<pre>
 
<pre>
 
...
 
...
Line 84: Line 87:
 
MORE SOON!
 
MORE SOON!
  
[[Category:HOWTO]]
+
[[Category:LIRC Configuration Files]]

Latest revision as of 19:43, 11 August 2010

This howto focuses on HOWTO get the Xbox DVD dongle to work on a standard pc. Also see XBOX_DVD_IR_Receiver

Device information

Supported remotes:

  • Xbox DVD remote (duh)
  • Remotes with the rca dvd protocol

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 thankful the patch for the Xbox DVD dongle is in the portage. Add this line to /etc/make.conf

LIRC_DEVICES="xboxusb"


Important.png Note: atiusb and xboxusb conflict with each other and only one will work at the same time.


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!

Configuration

Script.png /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!