IR / RF Remote Controls for Windows: Links to Explanations, Tutorials, and Guides

  Thread Rating:
  • 5 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
spongemonkey Offline
Junior Member
Posts: 1
Joined: May 2011
Reputation: 0
Post: #131
yunti Wrote:I'm currently using an windows MCE remote on a recent nightly of XBMC 22nd Oct 11 which works well for basic functions. (Play,stop etc...)

(I'm currently using this remote: http://wiki.xbmc.org/index.php?title=Fil...tsmall.jpg )


All this is built in and I haven't had to do anything, to get it to work, which is great.

However is there a way to add in the additional xbmc conrols, (OSD, menu etc...) without having to use something like eventghost.

Just curious if you had any luck with this. I am in the same boat for the most part. I have a somewhat generic remote that works fine in XBMC, but mainly just with navigation, playing media, etc, but I would love to figure out how to get just a few other things (like mapping the context menu) to work, and I can't seem to find anything that really explains this.
find quote
sergiocos Online
Posting Freak
Posts: 782
Joined: Jul 2009
Reputation: 4
Location: Bucharest, Romania
Post: #132
Anyone tested the new xbox 360 media remote? Like the perfect woman, sexy and not expensive, but i'm curious if it still works with an HP receiver, like previous xbox remote.
Perhaps a quick review with pros and cons? Cheers!
find quote
LOTL Offline
Junior Member
Posts: 5
Joined: Feb 2012
Reputation: 0
Post: #133
Man my head is spinning with all of the options for setting up my Harmony 700 with XBMC and MCE7.
I have read through the links at the beginning of this thread, and discussion at the AVS and Logitech forums.
I have an IR receiver that came with the original WMC remote (the eHome one).
I have another HP IR receiver on order and should have it in a few days.

I had set up my 700 with both the MCE Keyboard and the Media Center SE devices.
I managed to get MCE working pretty well through the 700, but then messed it up when i somewhat got XBMC working. I used the F7 key trick to wake my HTPC. This worked great for a short time and now it no longer does.Getting a little frustrated to say the least and not sure which way to head with this.

Im leaning towards trying Eventghost or possibly the Registry modifications mentioned in one of the links, but i was hoping to hear from someone who may have both XBMC and MCE7 working. Im only controlling my TV, AVR and the HTPC via the IR receiver, so its not an overly complicated setup.

Running Eden 11 on Windows 7 64 with Confluence Skin.
(This post was last modified: 2012-03-20 17:32 by LOTL.)
find quote
g.scholtens Offline
Senior Member
Posts: 202
Joined: Apr 2012
Reputation: 0
Post: #134
I've got a ms-tech 1200 rev.d case for my htpc. With a ms-tech remote.

In xmbc i only use the remote and no keyboard. Is there any option to program this remote? I want to use the * on the the remote to acces the context menu (C on keyboard)

I hope someone understand my problem.
find quote
right.vote Offline
Junior Member
Posts: 28
Joined: Feb 2012
Reputation: 0
Post: #135
Just got a Lenova remote/receiver, trying to set it up in win 7 w/ Eden, no prior installed software.

Using autoinstall setup for RC6. Remote IS listed properly in device manager.

Problem: first install not working -- get the following error message:

error creating process
c:users\...\IXP000.tmp\XB6204\~1.ex
e> reason: the requested operation requires elevation

I'm on a single PC with admin privileges.

what am I doing wrong?
find quote
bmurphy2121 Offline
Junior Member
Posts: 1
Joined: Jul 2012
Reputation: 0
Post: #136
With all these remotes that you have mentioned I really want to use a Logitech Harmony 900. What else do I need to make the 900 to work?
find quote
navster Offline
Junior Member
Posts: 22
Joined: Jul 2012
Reputation: 0
Post: #137
(2009-03-15 14:36)steford Wrote:  I'd like to add my experiences on getting the Cyberlink cheap remote (£5.99 Play.com) set up for use with XBMC using EventGhost.

Initially I found the idea of Eventghost quite confusing but after installing and playing with it it's very simple and I'm now using it for various other things on my HTPC.

I used this site for the basics and added 3 Mouse HID device plugins in XBMC giving them separate prefixes of 1, 2 and 3. 1 of these can be ommited if you don't need to detect the power button although worth adding at the start (can be removed later). You'll also notice that some keys eg up, down, left, right are already detected as keyboard commands and will work "out of the box" in XBMC.

It's now worth going through every button on the remote and seeing what event it triggers in Eventghost so you'll have a nice list on the left which can be dragged to wherever you like when creating actions. I jotted down the corresponding event on the chart from the site above.

Initially I used the XBMC plugin to create events in XBMC however this seemed to remove the nice click sounds associated with remote presses and be slightly erratic (although some of the extra functionality is handy). I then grabbed the key list for XBMC and added those that I required to my chart mapping a remote button to a keyboard command - simple.

In Eventghost it was then just a matter of adding a macro to catch a remote keypress (drag the event across from the left) and emulating a keystroke eg the Play button on the remote is detected as "2.Button.1" which should emulate a "p" key for use in XBMC. This was repeated for each button that wasn't seen as a keypress - only 12 buttons for my setup. I made a folder called "Remote" in the "Context Folder" to house all this to keep it neat. The XML export is below

Quote:<Folder Name="Remote" Expanded="True">
<Macro Name="Play">
<Event Name="2.Button.1" />
<Action>
Window.SendKeys(u'p', False)
</Action>
</Macro>
<Macro Name="Pause">
<Event Name="2.Button.0" />
<Action>
Window.SendKeys(u'{Space}', False)
</Action>
</Macro>
<Macro Name="Stop">
<Event Name="Keyboard.MediaStop" />
<Action>
Window.SendKeys(u'x', False)
</Action>
</Macro>
<Macro Name="Fast Forward">
<Event Name="2.Button.4" />
<Action>
Window.SendKeys(u'f', False)
</Action>
</Macro>
<Macro Name="Rewind">
<Event Name="2.Button.5" />
<Action>
Window.SendKeys(u'r', False)
</Action>
</Macro>
<Macro Name="Previous Menu">
<Event Name="2.Button.13" />
<Action>
Window.SendKeys(u'{Escape}', False)
</Action>
</Macro>
<Macro Name="Context Menu">
<Event Name="3.Button.5" />
<Action>
Window.SendKeys(u'{Apps}', False)
</Action>
</Macro>
<Macro Name="Info">
<Event Name="2.Button.6" />
<Action>
Window.SendKeys(u'i', False)
</Action>
</Macro>
<Macro Name="Aspect Ratio">
<Event Name="3.Button.7" />
<Action>
Window.SendKeys(u'z', False)
</Action>
</Macro>
<Macro Name="Parent Dir">
<Event Name="3.Button.1" />
<Action>
Window.SendKeys(u'{Backspace}', False)
</Action>
</Macro>
<Macro Name="Show Subtitles" Enabled="False">
<Event Name="3.Button.4" />
<Action>
Window.SendKeys(u's', False)
</Action>
</Macro>
<Macro Name="Page Up">
<Event Name="2.Button.15" />
<Action>
Window.SendKeys(u'{PageUp}', False)
</Action>
</Macro>
<Macro Name="Page Down">
<Event Name="2.Button.14" />
<Action>
Window.SendKeys(u'{PageDown}', False)
</Action>
</Macro>
</Folder>
That's pretty much it. I only have a basic setup currently matching my old XBOX version and £5.99 was a good price for the remote and USB receiver. I've learnt the remote commands on my multi-remote so the original can now sit in a drawer. I'm also using Eventghost to start/stop things on the HTPC when I remote desktop to it and to monitor folders for new downloads - so it's a very worthy addition to any HTPC for the remote and other applications.

Hope this helps someone get into EventGhost which can seem quite daunting at first and utilise cheap remote hardware.

I would like to add an update to stetford's post on this subject as it is quite well written\indexed and I was unable to find a guide encompassing the advances in EventGhost since this post, which have made the process even simpler. My steps were as follows:

1. Install latest version of EventGhost with default options which at this moment in time is v. 0.4.1.r1572

2. On the right hand pane of EventGhost delete everything below the Start logo

3. Go to Configuration > Add Plugin > Remote Receiver > Cyberlink Universal Remote Control (let Windows update the driver)

4. Go to Configuration > Add Plugin > Program Control > XBMC2

5. Under the XBMC2 folder on the right hand pane expand the Buttons > Remote folder

6. Now press the required buttons on your remote one at a time to bring up the command on the left pane

7. Drag and drop the command from the left pane to the relevant function under the expanded right pane folder

8. Repeat steps 6-7 for all required buttons on your remote (I got to around 20 buttons)

9. Save the final configuration to an XML filename of your choice

10. Go to File > Options and select Autostart EventGhost to system startup

11. Launch XBMC > System > Network > Remote Control and select Allow programs on this system to control XBMC

12. Disable Windows Media Centre as this seems to interfere with some of the remote commands - Start > Control Panel > Programs > Turn Windows features on or off > Media Features > Windows Media Center (uncheck)

13. You may add even further remote functionality under the EventGhost XBMC2 Actions folder, which I cannot remember the detail of right now. Feel free to PM me if you need further guidance on this area
find quote
rossglass Offline
Member
Posts: 61
Joined: Oct 2011
Reputation: 2
Post: #138
Hi,

I have a VRC 1100 remote and have got most of my mappings completed but the one thing I've struggled with is to add an entry to keyboard.xml which will assign a button to select the Windows start button. The reason why this would be handy is that on occasions some plugins hang on me and this would allow me to see my taskbar which I've set to hide and close down XBMC.

I would like to use the power button to complete this action.

Can anyone advise?
find quote
deaerator Offline
Junior Member
Posts: 17
Joined: Sep 2012
Reputation: 0
Post: #139
I own a mce hauppauge 226 remote control with usb IR.

Almost everything works properly out of the box, except for one pet peve.

when I am watching a Movie and hit the back button or have the movie in PIP mode, I can not seem to find a way back to playing the movie without stopping and searching for it again and resume.

Is there a command where I can just return the pip windowed movie.
find quote
g.scholtens Offline
Senior Member
Posts: 202
Joined: Apr 2012
Reputation: 0
Post: #140
Wich tutorial must i follow for a ms-tech mc1200 remote. I use windows 8 and xbmc eden.
find quote
Post Reply