The title says it all really.  I can change channels as much as a like
using the change-channel-lirc.sh script:

#!/bin/sh

REMOTE_NAME=SKY
cmd="$1"

case $cmd in
    [0-9]*)
    for digit in $(echo $1 | sed -e 's/./& /g'); do
        irsend SEND_ONCE $REMOTE_NAME $digit
        sleep 1
        # If things work OK with sleep 1, try this for faster channel changes:
        # sleep 0.3
    done
    ;;

    *)
        irsend SEND_ONCE $REMOTE_NAME $cmd
        ;;
esac


but when i go into mythtv it works once then just stops.  This also
includes changing channels manually, both using the script and using
irsend.

Restarting the machine is the only thing that works.  Restarting
lircd, mythtv or removing the lirc module and modprobing it again
doesn't help.

Any suggestions?
_______________________________________________
mythtv-users mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users

Reply via email to