Any help would be appreciated.
I have tried blacklisting the ati_remote, currently it is not (I didn't even get a devide id when it was blacklisted).
I have also tried working with the driver atilibusb, currently I'm trying the solution of setting it up as an HID device.
The lirc service is running fine:
$this->bbcode_second_pass_code('', '
[root@Raspifi ~]# systemctl status lirc.service
lirc.service - Linux Infrared Remote Control
Loaded: loaded (/etc/systemd/system/lirc.service; enabled)
Active: active (running) since Thu 1970-01-01 01:00:19 CET; 43 years 6 months ago
Process: 286 ExecStartPost=/usr/bin/ir-keytable --protocol=LIRC (code=exited, status=0/SUCCESS)
Process: 283 ExecStart=/usr/sbin/lircd -d $LIRC_DEVICE -P /run/lirc/lircd.pid -H $LIRC_DRIVER $LIRC_CONFIGFILE (code=exited, status=0/SUCCESS)
Process: 280 ExecStartPre=/bin/ln -s /run/lirc/lircd /dev/lircd (code=exited, status=0/SUCCESS)
Process: 276 ExecStartPre=/bin/rm -f /run/lirc/lircd (code=exited, status=0/SUCCESS)
Process: 273 ExecStartPre=/bin/rm -f /dev/lircd (code=exited, status=0/SUCCESS)
Process: 267 ExecStartPre=/bin/mkdir -p /run/lirc (code=exited, status=0/SUCCESS)
Main PID: 285 (lircd)
CGroup: name=systemd:/system/lirc.service
ââ285 /usr/sbin/lircd -d /dev/input/by-id/usb-X10_Wireless_Technol...
')
The config files have been copied from this thread:
https://bbs.archlinux.org/viewtopic.php?id=151479&p=1
ir-keytable recognizes the device:
$this->bbcode_second_pass_code('', '# ir-keytable
Found /sys/class/rc/rc0/ (/dev/input/event1) with:
Driver ati_remote, table rc-medion-x10-digitainer
Supported protocols: other
Enabled protocols:
Name: X10 Wireless Technology Inc USB
bus: 3, vendor/product: 0bc7:0006, version: 0x0100
Repeat delay = 500 ms, repeat period = 125 ms
')
However in IRW I cannot see any keypresses.
Is anyone with a similar setup able to help me please?
Edit: Using
$this->bbcode_second_pass_code('', 'irrecord --driver=devinput --device=/dev/input/by-id/usb-X10_Wireless_Technology_Inc_USB_Receiver-event-if00 /root/my_remote2
')
I can create my own lircd.config and buttons are recognized, however I still can't see them in irw
$this->bbcode_second_pass_code('', 'cat /etc/conf.d/lircd.conf
# Parameters for lirc daemon
#
LIRC_DEVICE="/dev/input/by-id/usb-X10_Wireless_Technology_Inc_USB_Receiver-event-if00"
LIRC_DRIVER="devinput"
LIRC_EXTRAOPTS=""
LIRC_CONFIGFILE="/etc/lirc/lircd.conf"
')
For people trying to get this to run aswell: the self-made conf file doesn't work, you have to use the one for HID linked in the archwiki article (http://lirc.git.sourceforge.net/git/git ... ut;hb=HEAD)
Now I just need to get .lircrc to work

Edit: Didn't know how that you had to start irexec manually

Now everything besides automatic startup seems to be working.
I'll post a summary/current guide for those who have the same problems later.