Wirrunna
Active Member
Following on from my earlier post about getting the FLIRC volume control to work, with offline help from Michael it now works.
CamillaDSP:~$ sudo systemctl status flirc will show you if the flirc service is going or not. In my case, the flirc service would work and stop and then restart, however volume control didn't work.
Checking the contents of /dev/input/by-id/ showed that the id of my flirc was different to the id in the flirc.py that michael wrote. Replacing the id fixed my problem.
Line 9 of flirc1_08112022.txt which you change to flirc.py -
flirc=evdev.InputDevice('/dev/input/by-id/usb-flirc.tv_flirc-if01-event-kbd')
line 9 with the changed id
flirc=evdev.InputDevice('dev/input/by-id/usb-flirc.tv_flirc_E7A648F650554C39322E3120FF08122E-if01-event-kbd')
My flirc is brand new and I suspect that there may have been a recent change in the internals of these devices.
CamillaDSP:~$ sudo systemctl status flirc will show you if the flirc service is going or not. In my case, the flirc service would work and stop and then restart, however volume control didn't work.
Checking the contents of /dev/input/by-id/ showed that the id of my flirc was different to the id in the flirc.py that michael wrote. Replacing the id fixed my problem.
Line 9 of flirc1_08112022.txt which you change to flirc.py -
flirc=evdev.InputDevice('/dev/input/by-id/usb-flirc.tv_flirc-if01-event-kbd')
line 9 with the changed id
flirc=evdev.InputDevice('dev/input/by-id/usb-flirc.tv_flirc_E7A648F650554C39322E3120FF08122E-if01-event-kbd')
My flirc is brand new and I suspect that there may have been a recent change in the internals of these devices.