|
Edited by cbm80 at 2016-3-3 03:16
Finally I solved it by myself. I programmed remote from scratch and now it works almost ok. It seems that you must press keys very carefully during first phase of irrecord (measuring pulses, counting bits, etc)
My second attempt generated completly different signal parameters. But scanned codes were the same so I took them from previous programming.
I collected all my steps in one place - maybe it will help somebody in the future.
1. Start recording
- killall lircd; irrecord /storage/.config/lircd.conf
Copy code
2. Change name after "begin remote" to "name devinput"
- nano /storage/.config/lircd.conf
Copy code
It should look like below:
- begin remote
- name devinput
Copy code
4. Now test all codes using "irw" command. If every code is ok you are done.
- killall lircd; lircd /storage/.config/lircd.conf
- irw
Copy code
5. Add lircd to /storage/.config/autostart.sh:
- #!/bin/sh
- killall lircd; lircd /storage/.config/lircd.conf
Copy code
6. Reboot OpenELEC or restart kodi
|
|