MediaPortal Forums HTPC/MediaCenter

Go Back   MediaPortal Forum » MediaPortal 1 » Main Features (talk, share your ideas, get support) » Input / Output interfaces » Remotes » Support


Support Problems with your remote? Post them here.

Reply
 
Thread Tools Display Modes
Old 2008-07-03, 04:59   #1 (permalink)
Portal Member
 
Join Date: Oct 2006
Posts: 18
Thanks: 1
Thanked 1 Time in 1 Post

Country:


fixed Philips SRM7500 RF MCE Remote

I bought a Philips SRM7500 RF MCE remote a couple months ago for my new HTPC build hoping to replace my old ATI Remote Wonder, but I don't seem to be able to get full functionality out of the thing.

If I select Microsoft MCE Remote in Configuration, the only buttons that work are the arrows, OK, and the number pad. If I select general HID I gain other buttons such as volume and play/pause/stop/etc, but none of the other special function buttons.

I've tried the MCE Replacement plugin as well as the IR Server Suite (for its general HID support) but I couldn't gain any additional functionality over MP's built-in general HID support. Is there a way to get this remote fully working with MP's built-in remote control modules? I'm guessing I can get it going with something like Girder but I'd like to avoid doing that if possible.

Thanks!

Last edited by Aridyme; 2008-07-15 at 07:10.
Aridyme is offline   Reply With Quote
Old 2008-07-03, 18:45   #2 (permalink)
Portal Member
 
Melloware's Avatar
 
Join Date: Oct 2007
Posts: 67
Thanks: 9
Thanked 1 Time in 1 Post

Country:


Default

This should definitely be possible. as long as each button is sending a unique HID instruction there is no reason it can't be mapped in MediaPortal or any other application.

If you couldn't get it to work with IRServerSuite and HID you might have better luck with our software Intelliremote we also have a HID tester application that lets you press every button on your remote to see that it spits out a HID code.

Give it a try here. That way you can diagnose if your remote is sending HID codes for every button.

http://melloware.com/download/warez/usbtester.zip
__________________
Melloware

"Remote problems try IRServerSuite, if that does not satisfy your needs look at Intelliremote"
Melloware is offline   Reply With Quote
Old 2008-07-04, 07:07   #3 (permalink)
Portal Member
 
Join Date: Oct 2006
Posts: 18
Thanks: 1
Thanked 1 Time in 1 Post

Country:


Default

I ended up using an external program (EventGhost) to get things working. A bit of scripting, some button mapping, and a plugin installation is all it took. I'll post my EventGhost config for others to use when I'm done setting things up.
Aridyme is offline   Reply With Quote
Old 2008-07-15, 07:09   #4 (permalink)
Portal Member
 
Join Date: Oct 2006
Posts: 18
Thanks: 1
Thanked 1 Time in 1 Post

Country:


fixed

Here's what I did to get this remote working with MediaPortal:
(NOTE: To save yourself some work you can do steps 1-5, import the attached XML file, and be done with the configuration.
  1. Install MP 1.0 RC1

  2. Install 2008/06/27 SVN

  3. Install the MessagePlugin for MP

  4. Configure MP to use General HID
    • This lets MP handle the buttons it recognizes. You do not need to do anything in this section besides enabling it.

  5. Install EventGhost v0.3.6.1446

  6. Configure EventGhost's Generic HID plugin
    • Select "Philips RF Dongle"
    • Check "Use raw Data as event name"

  7. Add the MediaPortal plugin

  8. Create a macro called "Philips SRM7500"
    • Add an event called "HID.*"
    • Add a Python script called "Parse Remote Code":
      Code:
      event = eg.event.string.split(".")[1][10:44]
      eg.TriggerEvent(event)
      
    • This generates useable events from the events received from the remote

  9. Assign the parsed remote codes to the events in the MediaPortal group

The script is required because:
  1. Each button press is toggled (meaning part of the event string is randomized) -- the actual remote code is a four-character substring of the event string. The following is the remote code for button "1":
    Code:
    HID.0010F39C9B1242029A998053029A9965660400001803FF103E900000FFFF0ABBFF10465BBF4124000407D4AA8842844C058903817AF452C3858B816C0090053800
    
  2. When idle, a bunch of events are generated with the same remote code as the most recently pressed button (at regular intervals). This means that if you parse out just the four-character remote code, you will experience constant repeated presses of that button when you're trying to enjoy your media. Fortunately, there is a difference in the button-press-events and the randomly-generated-events, which is why the code parses out [10:44]. Here are some button-press and randomly-generated event strings, respectively:
    Code:
    HID.00205BC4391242029A998053029A9965660400000803FF103E900000FFFF0ABBFF10465BBF4124000407D4AA8842844C058903817AF452C3858B816C0090053800
    HID.0080BC52F31242029A998053029A9965660400001803FF103E900000FFFF0ABBFF10465BBF4124000407D4AA8842844C058903817AF452C3858B816C0090053800
    HID.00100F297B1242029A998053029A9965660400004803FF103E900000FFFF0ABBFF10465BBF4124000407D4AA8842844C058903817AF452C3858B816C0090053800
    
    HID.00304B1F980C5900000000000004184C340C00000803FF103E900000FFFF0ABBFF10465BBF4124000407D4AA8842844C058903817AF452C3858B816C0090053800
    HID.00F0FBB2510C5900000000000004144C2C0400001803FF103E900000FFFF0ABBFF10465BBF4124000407D4AA8842844C058903817AF452C3858B816C0090053800
    HID.00106182D90C59000000000000041044340400004803FF103E900000FFFF0ABBFF10465BBF4124000407D4AA8842844C058903817AF452C3858B816C0090053800
    

I've attached the EventGhost XML to save people the work. Hope this is helpful!
Attached Files
File Type: xml MediaPortal_(Philips_SRM7500).xml (8.8 KB, 74 views)

Last edited by Aridyme; 2008-10-11 at 02:39. Reason: Clarify use of XML file
Aridyme is offline   Reply With Quote
This User Say Thank You:
Old 2008-07-15, 09:20   #5 (permalink)
Super Moderator
 
Paranoid Delusion's Avatar
 
Join Date: Jun 2005
Location: Cheshire UK
Posts: 6,656
Thanks: 129
Thanked 235 Times in 209 Posts

Country:

My System

Default

Hi Aridyme

Thanks for sharing, i'm sure the xml will come in very handy for someone else

Paranoid Delusion is offline   Reply With Quote
Old 2008-07-23, 19:59   #6 (permalink)
MP Donator
 
Join Date: Apr 2008
Posts: 32
Thanks: 6
Thanked 0 Times in 0 Posts

Country:


Default

Quote:
Originally Posted by Aridyme View Post
Here's what I did to get this remote working with MediaPortal:
[list=1][*]Install MP 1.0 RC1
Hi Aridyme,
thanks for your work. I have one question.
Need your solution the philips device driver for the SRM 7500? I have some trouble with this driver. Sometimes I have to reconnect the USB-dongle and reconnect (relearn) the remote to the dongle. I hate the Philips Software but I like the remote....

Stefan
__________________
My System
ATX Desktop Antec FUSION, Gigabyte GA-MA78GM-S2H, AMD Athlon64 X2 4800+ EE, 2GB RAM,
500GB WD GreenPower, FloppyFireDTV C, Philips SRM 7500 Remote
System: Vista 32 Home Premium SP1
Ibeg is offline   Reply With Quote
Old 2008-07-26, 17:29   #7 (permalink)
Portal Member
 
Join Date: Oct 2006
Posts: 18
Thanks: 1
Thanked 1 Time in 1 Post

Country:


Default

Not sure I can help you there... do you have the latest driver?

http://update.homecontrol.philips.co.../mediacontrol/
Aridyme is offline   Reply With Quote
Old 2008-08-09, 16:31   #8 (permalink)
Portal Member
 
Join Date: Aug 2008
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts

Country:


Default

thanks!!
is there any way of associate the green button to mediaportal? i'm kind of new to this..
update:
added "Start Program: AppStart.exe" to the eventghost mediaportal/start item, and it works.

Last edited by ohno; 2008-08-09 at 16:48.
ohno is offline   Reply With Quote
Old 2008-08-19, 04:57   #9 (permalink)
Portal Member
 
Melloware's Avatar
 
Join Date: Oct 2007
Posts: 67
Thanks: 9
Thanked 1 Time in 1 Post

Country:


Default

Just an FYI the latest version of Intelliremote supports the Philips SRM7500 remote natively and comes included with a philipssrm7500.xml profile with all the buttons mapped.
__________________
Melloware

"Remote problems try IRServerSuite, if that does not satisfy your needs look at Intelliremote"
Melloware is offline   Reply With Quote
Old 2008-08-19, 08:59   #10 (permalink)
MP Donator
 
Join Date: Apr 2008
Posts: 32
Thanks: 6
Thanked 0 Times in 0 Posts

Country:


Default

Quote:
Originally Posted by Melloware View Post
Just an FYI the latest version of Intelliremote supports the Philips SRM7500 remote natively and comes included with a philipssrm7500.xml profile with all the buttons mapped.
thanks for the info!
I will try it.
__________________
My System
ATX Desktop Antec FUSION, Gigabyte GA-MA78GM-S2H, AMD Athlon64 X2 4800+ EE, 2GB RAM,
500GB WD GreenPower, FloppyFireDTV C, Philips SRM 7500 Remote
System: Vista 32 Home Premium SP1
Ibeg is offline   Reply With Quote
Reply

Bookmarks

Tags
mce, philips, remote, srm7500

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Problems with MCE RF Remote bilo1000 support 4 2008-08-13 08:58
Using Radio Freqency (RF) MCE Remote? HappyTalk MCE Replacement Plugin 16 2008-08-11 14:52
Microsoft MCE RF remote with MP bilo1000 General 5 2008-04-30 17:40
Problem with philips srm7500 remote --> MP won't start myrakka Installation, configuration support 0 2008-03-01 14:04
Philips SRM7500 remote running Windows XP? cep General 0 2007-12-11 23:15


All times are GMT +1. The time now is 04:01.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 Protected by Akismet Blog with WordPress
Advertisement System V2.6 By   Branden