Archive:Asrock Remote: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Remote
== Asrock Remote ==
|Name= Asrock Remote
[[File:AsrockRemote.jpg|thumb]]
|Image= AsrockRemote.jpg
|Description= The Asrock ION PC's come with a remote control and some models the HT Also include a internal CIR receiver.


== '''Windows''' ==
The Asrock ION PC's come with a remote control and some models the HT Also include a internal CIR receiver.
=== '''Information''' ===
{{-}}
 
 
=== Windows ===
==== Information ====
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.
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.


=== '''Configuration''' ===
==== Configuration ====
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:


Line 19: Line 21:
{{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. This is not true for Linux.}}


== '''Linux Ubuntu''' ==
=== Linux Ubuntu ===


=== '''Information''' ===
==== Information ====
Asrock ION330HT with remote and internal CIR receiver compatible with any MCE remote.
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.
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.


=== '''Configuration''' ===
==== Configuration ====
If Lirc is not installed we install it now:
If Lirc is not installed we install it now:
<source lang="bash">
<syntaxhighlight lang="bash" enclose="div">
sudo apt-get install lirc
sudo apt-get install lirc
</source>
</syntaxhighlight>
If LIRC is already installed do:
If LIRC is already installed do:
<source lang="bash">
<syntaxhighlight lang="bash" enclose="div">
sudo dpkg-reconfigure lirc
sudo dpkg-reconfigure lirc
</source>
</syntaxhighlight>
Remote control configuration:
Remote control configuration:
* Windows Media Center Transceivers/Remotes (all)
* Windows Media Center Transceivers/Remotes (all)
Line 41: Line 43:


Next change the default configuration to work with the Nuvoton remote
Next change the default configuration to work with the Nuvoton remote
<source lang="bash">
<syntaxhighlight lang="bash" enclose="div">
sudo nano /etc/lirc/hardware.conf
sudo nano /etc/lirc/hardware.conf
</source>
</syntaxhighlight>
Change the following 3 lines from:
Change the following 3 lines from:
<source lang="xml">
<syntaxhighlight lang="xml" enclose="div">
REMOTE="Windows Media Center Transceivers/Remotes (all)"
REMOTE="Windows Media Center Transceivers/Remotes (all)"
REMOTE_MODULES="lirc_dev mceusb"
REMOTE_MODULES="lirc_dev mceusb"
REMOTE_DRIVER=""
REMOTE_DRIVER=""
</source>
</syntaxhighlight>
Into the following
Into the following
<source lang="xml">
<syntaxhighlight lang="xml" enclose="div">
REMOTE="Nuvoton Transceivers/Remotes"
REMOTE="Nuvoton Transceivers/Remotes"
REMOTE_MODULES="lirc_dev nuvoton-cir"
REMOTE_MODULES="lirc_dev nuvoton-cir"
REMOTE_DRIVER="default"
REMOTE_DRIVER="default"
</source>
</syntaxhighlight>
Save changes with {{keypress|ctrl|O}} to save file & {{keypress|ctrl|X}} and close nano.
Save changes with {{keypress|ctrl|O}} to save file & {{keypress|ctrl|X}} and close nano.


Restart LIRC to apply the changes
Restart LIRC to apply the changes
<source lang="bash">
<syntaxhighlight lang="bash" enclose="div">
sudo service lirc restart  
sudo service lirc restart  
</source>
</syntaxhighlight>


And the remote should now be working with XBMC.
And the remote should now be working with XBMC.
}}

Latest revision as of 03:05, 10 September 2020

Asrock Remote

AsrockRemote.jpg

The Asrock ION PC's come with a remote control and some models the HT Also include a internal CIR receiver.


Windows

Information

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.

Configuration

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:

  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
  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

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.

Linux Ubuntu

Information

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.

Configuration

If Lirc is not installed we install it now:

sudo apt-get install lirc

If LIRC is already installed do:

sudo dpkg-reconfigure lirc

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

sudo nano /etc/lirc/hardware.conf

Change the following 3 lines from:

REMOTE="Windows Media Center Transceivers/Remotes (all)"
REMOTE_MODULES="lirc_dev mceusb"
REMOTE_DRIVER=""

Into the following

REMOTE="Nuvoton Transceivers/Remotes"
REMOTE_MODULES="lirc_dev nuvoton-cir"
REMOTE_DRIVER="default"

Save changes with ctrl+O to save file & ctrl+X and close nano.

Restart LIRC to apply the changes

sudo service lirc restart

And the remote should now be working with XBMC.