SnapStream Forums

Go Back   SnapStream Forums > General Discussion > Home Theater PC Discussion
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
  #1 (permalink)  
Old 01-23-2007, 08:01 PM
Registered User
 
Join Date: Jan 2007
Posts: 13
Using a cheap remote

I got a tuner card, all is well, but it came with a cheap remote. Using some testing I have determined that it merely sends keyboard keys instead of any actual commands like I understand other remotes do. I have looked into perhaps purchasing a better remote but they are far too expensive ($50 for a remote is a lot of money with a $50 tuner card) so I'm hoping to reprogram mine somehow. I tried Girder as suggested in the FAQ but when going to assign buttons to certain functions, it complains when I use different buttons that the assignment has already been made. To put it better, different buttons are sending (Girder at least) the same codes, so I can't have them each have their own function. Using a JavaScript that I made to tell me what button was just pressed, I determined that when pressing buttons that JavaScript can detect that they are different, but Girder cannot. How might I go about getting my remote to work with Beyond TV? The Remote is a Sicuro DEC-100 cheap-o one. I have it partially working (channel up/down and the numbers as well as arrow buttons all work) but the other buttons, such as pause/record/stop/volume/back/repeat don't work.
Reply With Quote
  #2 (permalink)  
Old 01-23-2007, 09:36 PM
soham's Avatar
SnapStream Community Mgr
 
Join Date: Jan 2003
Location: Houston, TX
Posts: 307
Re: Using a cheap remote

If you can program your remote, there are two key mappings that Beyond TV responds to:

1) The generic Windows keys for media control. Microsoft has defined these, and most software applications support them. They are what Firefly Mini use. So if you can get your remote to send these same codes, then you will be fine.
Here's the mapping: http://blogs.snapstream.com/wp-content/keys.JPG

2) Beyond TV also has a map of keyboard hotkeys. So you could have your remote send these keys. You can see the hotkeys by pressing F1 from any screen in Beyond TV.
__________________
Soham
Community
SnapStream Media
Reply With Quote
  #3 (permalink)  
Old 01-24-2007, 08:44 PM
Registered User
 
Join Date: Jan 2007
Posts: 13
Re: Using a cheap remote

There's no direct way to program my remote, to my knowledge. Would there be a program that allows me to do so? There was no remote-related software that came with it other than the driver...thinking about it I'm not even sure I needed a driver or it came with one.

OK, I found a freeware keyboard remapping tool, but when I go to remap some of the buttons (play/pause,stop,record, etc.) they all send teh same scancode, 29 (which is left control according to this program). How can I remedy this?

Last edited by dmsuperman; 01-24-2007 at 08:53 PM.
Reply With Quote
  #4 (permalink)  
Old 01-24-2007, 09:32 PM
soham's Avatar
SnapStream Community Mgr
 
Join Date: Jan 2003
Location: Houston, TX
Posts: 307
Re: Using a cheap remote

Sorry, I am not familiar with your remote. Some of the other users may have some guidance about that or on using Girder.
__________________
Soham
Community
SnapStream Media
Reply With Quote
  #5 (permalink)  
Old 02-02-2007, 10:33 AM
Registered User
 
Join Date: Feb 2004
Posts: 1,330
Re: Using a cheap remote

You may be able to use a software called HIP to intercept your input from the remote and then run particular applications and do certain actions, based on that. It is free software. I've been thinking of trying it out, myself, to solve some of my issues with the Firefly.

Another program that might be worth looking into is EventGhost. It's free, too.
Reply With Quote
  #6 (permalink)  
Old 02-02-2007, 07:04 PM
Registered User
 
Join Date: Jan 2007
Posts: 13
Re: Using a cheap remote

Using SageTV (bad program save 2 things, it has automatic key mapping that works with my remote, and the intelligent recording of programs i might like) I found that the buttons do actually send keys. Then, using more JavaScript, I had it alert anything that is pressed. Using that, I made up a list of what buttons are sent. Things like Ctrl + Alt + Shift + 2 are what's being sent, so maybe if I can map these out then use something like HIP or Girder but just use Ctrl + Alt + Shift + 2 on my keyboard I may be able to get it to work. That's probably why it was sending multiple scancodes to Girder, it was detecting Ctrl and Alt and Shift as seperate scancodes.

Code:
<html>
<head>
<title>test</title>
<script type='text/javascript'>
function doIt(e){
  shiftPressed = false;
  altPressed = false;
  ctrlPressed = false;
  var unicode=e.charCode? e.charCode : e.keyCode
  var evt = navigator.appName=="Netscape" ? e:event;
  shiftPressed=evt.shiftKey;
  altPressed  =evt.altKey;
  ctrlPressed =evt.ctrlKey;
  alert((shiftPressed ? "Shift + ":"") + (altPressed   ? "Alt + "  :"") + (ctrlPressed  ? "Ctrl + " :"") + String.fromCharCode(unicode));
}
</script>
</head>
<body onKeyPress='doIt(event);'>
</body>
</html>
For anyone else wanting to do this. Didn't bother testing in IE, but it works in FireFox 2.0 at least. You save that as a .html page, then hit buttons on your remote and it'll alert what buttons it sends, just do that button by button and document what each button sends, and you'll have a list of all the hotkeys your remote sends
Reply With Quote
Reply

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

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 On


Similar Threads
Thread Thread Starter Forum Replies Last Post
HTPC on the cheap coachstevo Home Theater PC Discussion 3 08-16-2006 04:18 PM
Building a BTV PVR on the CHEAP! CelShader Home Theater PC Discussion 3 04-25-2006 05:18 PM
Awsome cheap Remote Control!!! jcintron SnapStream Discussion 42 03-30-2004 01:21 PM
cheap USB IR? Chimera23 SnapStream Discussion 0 01-27-2004 07:18 AM
want to get away cheap npsken SnapStream Discussion 4 07-31-2003 01:52 PM


All times are GMT -6. The time now is 08:50 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.0 RC1
©2004-2009 Snapstream Media