On Jan 16, 2008 5:06 AM, Cliff Pankonien &lt;<a href="mailto:cliff@ccpip.com">cliff@ccpip.com</a>&gt; wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hello all,<br>I have a working myth setup with multiple frontends, 1 backend. i am now<br>trying to control a scientific atlanta explorer 2200 w/ ir blaster. when<br>i change a channel either from the command line or from a frontend, it&#39;s
<br>hit-or-miss. sometimes it works ok (not very often)...usually it sends<br>each digit twice, so if i send 123, the cable box receives 112233 (but<br>if i send only one digit, it seems to get sent only once.) i&#39;ve tried
<br>codes that supposedly work from the various sites, they don&#39;t work at<br>all, so the codes i&#39;m using in lircd.conf are from irrecord, using the<br>comcast remote. i&#39;ve done irrecord a few times and the codes match each
<br>other every time, so they seem to be accurate. i&#39;ve tried adjusting the<br>time delay between digits in change_ch.sh then restarting lirc (not sure<br>if that&#39;s necessary), doesn&#39;t seem to make much difference. i&#39;ve tried
<br>both change_ch.sh and change_chan.pl and don&#39;t see anything in there<br>that can be adjusted. any ideas? incidentally i&#39;m using a hauppage 150<br>w/mce remote (black remote, usb receiver/blaster)<br><br>thanks!
<br><br>cliff<br></blockquote></div><br>You need to modify your lircrc file.&nbsp; For any keys with this problem, you need to set repeat to zero.<br><br>Here is the info from <a href="http://lirc.org">lirc.org</a>:<br><dl><dt>
repeat</dt><dd>tells the program what shall happen if a key is repeated.  A
        value of zero tells the program to ignore repeated keys.  Any
        other positive value &#39;n&#39; tells the program to pass the config
        string every &#39;n&#39;-th time to the according application, when a
        key is repeated. The default for repeat is zero.</dd></dl>Here is what this section of my lircrc file look like:<br><br># Numbers 0-9<br><br>begin<br>&nbsp;&nbsp;&nbsp; prog = mythtv<br>&nbsp;&nbsp;&nbsp; button = 0<br>&nbsp;&nbsp;&nbsp; repeat = 0<br>&nbsp;&nbsp;&nbsp; config = 0
<br>end<br><br>begin<br>&nbsp;&nbsp;&nbsp; prog = mythtv<br>&nbsp;&nbsp;&nbsp; button = 1<br>&nbsp;&nbsp;&nbsp; repeat = 0<br>&nbsp;&nbsp;&nbsp; config = 1<br>end<br>.<br>.<br>.<br><br>