Archive:Asrock Remote: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>UNiversal
m (update this to current information in Linux Ubuntu.)
Line 4: Line 4:
|Description= The Asrock ION PCs come with a remote control. This is compatible with the Microsoft remote, and in Windows 7 (and possibly Vista) the .reg files used to reconfigure the MS remote will also work with the Asrock remote. The .reg files will not work in Windows XP because Windows XP does not detect the remote as an eHome device and install the eHome driver. It is possible the eHome drive could be installed with suitable modifications to irbus.inf (see the review of the HP remote above) but so far this has not been explored.
|Description= The Asrock ION PCs come with a remote control. This is compatible with the Microsoft remote, and in Windows 7 (and possibly Vista) the .reg files used to reconfigure the MS remote will also work with the Asrock remote. The .reg files will not work in Windows XP because Windows XP does not detect the remote as an eHome device and install the eHome driver. It is possible the eHome drive could be installed with suitable modifications to irbus.inf (see the review of the HP remote above) but so far this has not been explored.


== '''Windows''' ==
With the Remote-XBMC.reg config all the buttons work in XBMC except for the four buttons in the row above the coloured buttons. To configure these buttons to send the standard Media center keyboard shortcuts add the following to the .reg file:
With the Remote-XBMC.reg config all the buttons work in XBMC except for the four buttons in the row above the coloured buttons. To configure these buttons to send the standard Media center keyboard shortcuts add the following to the .reg file:


<pre> 47,00,00,00,04,01,10,\ ; Asrock remote: Music    - sends ctrl-M
<pre>
  47,00,00,00,04,01,10,\ ; Asrock remote: Music    - sends ctrl-M
   49,00,00,00,04,01,0C,\ ; Asrock remote: Pictures - sends ctrl-I
   49,00,00,00,04,01,0C,\ ; Asrock remote: Pictures - sends ctrl-I
   4A,00,00,00,04,01,08,\ ; Asrock remote: Movies  - sends ctrl-E
   4A,00,00,00,04,01,08,\ ; Asrock remote: Movies  - sends ctrl-E
   50,00,00,00,04,01,04,\ ; Asrock remote: Radio    - sends ctrl-A</pre>
   50,00,00,00,04,01,04,\ ; Asrock remote: Radio    - sends ctrl-A
</pre>
{{note|Some Asrock ION330HT ship with a Nuvoton W836x7HG CIR Device Driver with is not RC6 compatible. In this case the Windows registry fix for the ehome driver will not work. This is not true for Linux.}}


NOTE: Some Asrock ION330HT ship with a Nuvoton W836x7HG CIR Device Driver with is not RC6 compatible. In this case the Windows registry fix for the ehome driver will not work.
== '''Linux Ubuntu''' ==
Asrock ION330HT with remote and internal CIR receiver compatible with any MCE remote.
 
From Ubuntu 11.10 and up-to 12.10 including 12.04LTS getting the internal CIR + remote to work with Lirc + XBMC is rather a simple process.
<source lang="bash">
sudo apt-get install lirc
</source>
If LIRC is already installed do:
<source lang="bash">
sudo dpkg-reconfigure lirc
</source>
Remote control configuration:
* Windows Media Center Transceivers/Remotes (all)
IR transmitter, if present:
* None
 
Next change the default configuration to work with the Nuvoton remote
<source lang="bash">
sudo nano /etc/lirc/hardware.conf
</source>
Change the following 3 lines from:
<source lang="xml">
REMOTE="Windows Media Center Transceivers/Remotes (all)"
REMOTE_MODULES="lirc_dev mceusb"
REMOTE_DRIVER=""
</source>
Into the following
<source lang="xml">
REMOTE="Nuvoton Transceivers/Remotes"
REMOTE_MODULES="lirc_dev nuvoton-cir"
REMOTE_DRIVER="default"
</source>
Save changes with {{keypress|ctrl|O}} to save file & {{keypress|ctrl|X}} and close nano.
 
Restart LIRC to apply the changes
<source lang="bash">
sudo service lirc restart
</source>
}}
}}

Revision as of 14:39, 3 May 2013