Hi,
I just did a clean install of R5F27, using a
www.irblaster.info dual head irblaster on com 2
I started off trying to do a auto upgrade, but ran into the same problem as the user in [url=http://mysettopbox.tv/phpBB2/viewtopic.php?t=16458
]this thread [/url]
Through searching I managed to find somone else with
similar problems to me, but the solution of rebooting has not made any difference.
In short, I have the irblasterd.conf file in the /etc/irblaster/ directory, with a remote called 301 here is the file:
Code:
begin remote
name 301
bits 16
flags SPACE_ENC
eps 30
aeps 100
header 400 6100
one 400 1700
zero 400 2800
ptrail 400
gap 6200
min_repeat 4
toggle_bit 0
frequency 56000
begin codes
info 0x0000000000000000
power 0x0000000000000800
play 0x0000000000000C10
1 0x0000000000001000
2 0x0000000000001400
3 0x0000000000001800
frwd 0x0000000000001C10
4 0x0000000000002000
5 0x0000000000002400
6 0x0000000000002800
menu 0x0000000000002C00
7 0x0000000000003000
8 0x0000000000003400
9 0x0000000000003800
ffwd 0x0000000000003C10
select 0x0000000000004000
0 0x0000000000004400
cancel 0x0000000000004800
guide 0x0000000000005000
mute 0x0000000000005401
view 0x0000000000005800
tv_video 0x0000000000005C00
right 0x0000000000006000
vol+ 0x0000000000006401
up 0x0000000000006800
recall 0x0000000000006C00
left 0x0000000000007000
vol- 0x0000000000007401
down 0x0000000000007800
rec 0x0000000000007C00
pause 0x0000000000008000
stop 0x0000000000008400
sys_info 0x0000000000009000
*/ptv_list 0x0000000000009400
#/search 0x0000000000009800
sat 0x000000000000A400
tv 0x000000000000A801
rew 0x000000000000C410
fwd 0x000000000000C810
skip_back 0x000000000000D810
skip_fwd 0x000000000000DC10
end codes
end remote
Here is the channel_change.sh
Code:
#!/bin/bash
# Automatically Generated by /usr/local/bin/irblaster.sh
echo Changing to $1
REMOTE_NAME=301
for digit in $(echo $1 | sed -e 's/./& /g'); do
/usr/bin/irsend --device=/dev/irblasterd SEND_ONCE $REMOTE_NAME $digit
sleep 0.9
done
and here is the output of me trying to change the channel:
Code:
root@mythtv:/etc/irblaster# ./channel_change.sh 510
Changing to 510
/usr/bin/irsend: command failed: SEND_ONCE 301 5
/usr/bin/irsend: unknown remote: "301"
/usr/bin/irsend: command failed: SEND_ONCE 301 1
/usr/bin/irsend: unknown remote: "301"
/usr/bin/irsend: command failed: SEND_ONCE 301 0
/usr/bin/irsend: unknown remote: "301"
It is like it is looking at another irblasterd.conf file.
I have changed the name of the remote in both irblasterd.conf and channel_change.sh. in the latter it just changes which remote is not found.
BTW, here are the permissions:
Code:
# ls -la /etc/irblaster/
total 36
drwxr-xr-x 2 root root 4096 Oct 11 19:35 .
drwxr-xr-x 115 root root 8192 Oct 11 21:52 ..
-rwxr-xr-x 1 root root 248 Oct 11 21:58 channel_change.sh
-rw-r--r-- 1 root root 151 Oct 11 12:03 hardware.conf
-rwxr-xr-x 1 root root 6671 Oct 11 19:35 irblaster.conf
-rwxrwxrwx 2 root root 6460 Oct 11 21:59 irblasterd.conf
Any ideas?
Thanks in advance
Victor