View Single Post
Posts: 46 | Thanked: 160 times | Joined on Jun 2010 @ Germany, Berlin
#527
Originally Posted by electroaudio View Post
Whats wrong here?
Did you check /home/user/MyDocs/qtirreco/Devices/ ? There should be some files like BN59-00603A (depending on your remote name).

Try Terminal command
Code:
ls -1 "/home/user/MyDocs/qtirreco/Devices/"
Then, these files need to be included in /etc/lircd.conf .
Every device on a single line like
include "/home/user/MyDocs/qtirreco/Devices/BN59-00538A"

Check in Terminal if they are:
Code:
more /etc/lircd.conf
If not, you can add them all at once with the following bash-commands. You need to be root for this. And type the command "bash" before!
Code:
for device in `ls -1 "/home/user/MyDocs/qtirreco/Devices/"` ; do echo $device ; `grep -q $device /etc/lircd.conf` ; if [ $? -gt 0 ] ; then echo "adding $device to /etc/lircd.conf ..." ; echo "include \"/home/user/MyDocs/qtirreco/Devices/$device\"" >> /etc/lircd.conf ; else echo "Device $device already there" ; fi ; done
There might be other problems with your qtirreco installation, but without these include lines it wont work anyway.

Schöngruß
Ulle
 

The Following 2 Users Say Thank You to Ulle For This Useful Post: