News:

Rule #1 - Be Patient - Rule #2 - Don't ask when, if you don't contribute - Rule #3 - You have coding skills - LinuxMCE's small brother is available: http://www.agocontrol.com

Main Menu

Device Template for SAT_3100 (LIRC Remote)

Started by Venom986, February 15, 2008, 02:20:25 PM

Previous topic - Next topic

Venom986

This device template already existed in my 0710b3 DVD install.  I have made some modifications to it that I consider substantial improvements.  I'm not sure if my local changes sync back or not.  Here is the lirc.conf file I changed to. It is not my original work, but I got it from http://lirc.sourceforge.net/remotes/dishnet/Dish_Network.  This lircd.conf file supports ALL 16 remote addresses on the 3.1IR remote that comes with MANY DishNetwork, Echostar and ExpressVu satellite receivers.

Or at least, here it would be if it didn't exceed the character limit and if the website would let me upload a file (get the error that it can't access the upload path).

kir

I don't think your local changes synced back - as far as I know, for everything except InfraredCodes it requires sqlCVS checkin. Can you please upload your file somewhere e.g. at http://rapidshare.com/  - if possible, post here the link to it and md5sum.


Venom986

actually, for that matter, you could just grab it directly off the link i provided to the lirc sourceforge page in my first post.

Venom986

Also of possible interest, this is the channel changing script that I found for working with lirc


#!/bin/sh
REMOTE_NAME=DISH_1  # Define my remote name here
for digit in $(echo $1 | sed -e 's/./& /g'); do # Accept input from MythTV
irsend --device=/dev/lircd1 SEND_ONCE $REMOTE_NAME $digit # Send the output to Lirc
sleep 0.4 # note, you may have to tweak the interdigit delay up a bit # Wait for next digit
done # got last digit from MythTV
irsend --device=/dev/lircd1 SEND_ONCE $REMOTE_NAME select # Add a select to speed up channel changing.
sleep 0.4
irsend --device=/dev/lircd1 SEND_ONCE $REMOTE_NAME cancel # Get the Dish OSD off the screen, it annoys me and I don't want it on my recordings.