Here is my channel change script. It is the same that I have been using for the past 11 months on my old distribution:<br><br><div style="margin-left: 40px;"><font face="courier new,monospace">#!/bin/bash</font><br><font face="courier new,monospace">
REMOTE_NAME=telustv # Define remote name here</font><br><br><font face="courier new,monospace">for digit in $(echo $1 | sed -e 's/./& /g'); do # Accept input from MythTV</font><br><font face="courier new,monospace">
irsend --device=/dev/lircd SEND_ONCE $REMOTE_NAME $digit # Send the output to Lirc</font><br><font face="courier new,monospace">sleep 0.4 # note, you may have to tweak the interdigit delay up a bit # Wait for next digit</font>
<br><font face="courier new,monospace">done # got last digit from MythTV</font><br></div><font face="courier new,monospace"><br><font face="arial,helvetica,sans-serif">When the script executes, I see the red light on the IR transmitter blink for each digit. It just seems that the tv box does not pick up the signals. I have tried 2 different blasters and different serial ports, all with the same result. I do not have an alternate
lircd.conf file for TelusTV, or I would have tried that too.<br><br>Thanks for the help...<br></font></font>