Jeconti
November 9th, 2009, 06:58 AM
So I'm back at it again trying to figure this out. I'm running Mythbuntu 9.04 with Myth 0.21
I'm trying to configure an external channel changing script for my DishNet reciever. The reciever is connected to the box via an S-Video cable and component audio cables.
The script I am currently using with my Happauge HVR-1600 provided remote is as follows
#!/bin/sh
REMOTE_NAME=mceusb
irsend SET_TRANSMITTERS 1
irsend --device=/dev/lircd SEND_ONCE $REMOTE_NAME select
sleep 0.5
for digit in $(echo $1 | sed -e 's/./& /g'); do
irsend --device=/dev/lircd SEND_ONCE $REMOTE_NAME $digit
sleep 0.5
done
irsend --device=/dev/lircd SEND_ONCE $REMOTE_NAME select
code from the community help page (https://help.ubuntu.com/community/MythTV_External_Channel_Changer)
in backend setup, i have tried the command entry the following ways
bash /usr/local/bin/change-channel-lirc.sh
/usr/local/bin/change-channel-lirc.sh
bash change-channel-lirc.sh
change-channel-lirc.sh
each time I subsequently try to start livetv, a black screen appears for a moment then it dumps me back to the main menu. I have to remove the entry from the backend setup to get it to work.
Ideas?
I'm trying to configure an external channel changing script for my DishNet reciever. The reciever is connected to the box via an S-Video cable and component audio cables.
The script I am currently using with my Happauge HVR-1600 provided remote is as follows
#!/bin/sh
REMOTE_NAME=mceusb
irsend SET_TRANSMITTERS 1
irsend --device=/dev/lircd SEND_ONCE $REMOTE_NAME select
sleep 0.5
for digit in $(echo $1 | sed -e 's/./& /g'); do
irsend --device=/dev/lircd SEND_ONCE $REMOTE_NAME $digit
sleep 0.5
done
irsend --device=/dev/lircd SEND_ONCE $REMOTE_NAME select
code from the community help page (https://help.ubuntu.com/community/MythTV_External_Channel_Changer)
in backend setup, i have tried the command entry the following ways
bash /usr/local/bin/change-channel-lirc.sh
/usr/local/bin/change-channel-lirc.sh
bash change-channel-lirc.sh
change-channel-lirc.sh
each time I subsequently try to start livetv, a black screen appears for a moment then it dumps me back to the main menu. I have to remove the entry from the backend setup to get it to work.
Ideas?