This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ir_receiver_setup_on_le_potato [2023/05/05 12:06] – created austin | ir_receiver_setup_on_le_potato [2024/09/22 22:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Setting up lirc and evdev on Le Potato ====== | ====== Setting up lirc and evdev on Le Potato ====== | ||
+ | * Make sure that the kernel module is loaded **meson_ir** (Its in their kernel by default and if you use their config for a custom kernel) | ||
* Install Dependencies< | * Install Dependencies< | ||
- | emerge --ask media-tv/ | + | emerge --ask media-tv/ |
</ | </ | ||
* Modprobe kernel modules< | * Modprobe kernel modules< | ||
Line 49: | Line 50: | ||
ir-keytable -c -w / | ir-keytable -c -w / | ||
</ | </ | ||
+ | * Add the remote def to / | ||
+ | #driver table file | ||
+ | * | ||
+ | </ | ||
+ | * Load it on boot | ||
+ | * create service < | ||
+ | mobilemouse /etc/init.d # cat irkeytable | ||
+ | # | ||
+ | # Copyright 2023 Gentoo Authors | ||
+ | # Distributed under the terms of the GNU General Public License v2 | ||
+ | |||
+ | name=" | ||
+ | description=" | ||
+ | |||
+ | start() { | ||
+ | / | ||
+ | } | ||
+ | </ | ||
+ | * add to default run level< | ||
+ | rc-update add irkeytable default | ||
+ | </ | ||
+ | * Add any modules that you might need to autoload (my case was: ir-nec-decoder and ir-lirc-codec)< | ||
+ | echo " | ||
+ | </ | ||
+ | * Reboot to verify its good and test with evtest< | ||
+ | austin@mobilemouse ~/ | ||
+ | No device specified, trying to scan all of / | ||
+ | Not running as root, no devices may be available. | ||
+ | Available devices: | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | Select the device event number [0-6]: 6 | ||
+ | Input driver version is 1.0.1 | ||
+ | Input device ID: bus 0x19 vendor 0x0 product 0x0 version 0x0 | ||
+ | Input device name: " | ||
+ | Supported events: | ||
+ | Event type 0 (EV_SYN) | ||
+ | Event type 1 (EV_KEY) | ||
+ | Event code 2 (KEY_1) | ||
+ | Event code 3 (KEY_2) | ||
+ | Event code 4 (KEY_3) | ||
+ | Event code 5 (KEY_4) | ||
+ | Event code 6 (KEY_5) | ||
+ | Event code 7 (KEY_6) | ||
+ | Event code 8 (KEY_7) | ||
+ | Event code 9 (KEY_8) | ||
+ | Event code 10 (KEY_9) | ||
+ | Event code 11 (KEY_0) | ||
+ | Event code 113 (KEY_MUTE) | ||
+ | Event code 114 (KEY_VOLUMEDOWN) | ||
+ | Event code 115 (KEY_VOLUMEUP) | ||
+ | Event code 116 (KEY_POWER) | ||
+ | Event code 158 (KEY_BACK) | ||
+ | Event code 159 (KEY_FORWARD) | ||
+ | Event code 164 (KEY_PLAYPAUSE) | ||
+ | Event code 373 (KEY_MODE) | ||
+ | Event code 410 (KEY_SHUFFLE) | ||
+ | Event type 2 (EV_REL) | ||
+ | Event code 0 (REL_X) | ||
+ | Event code 1 (REL_Y) | ||
+ | Event type 4 (EV_MSC) | ||
+ | Event code 4 (MSC_SCAN) | ||
+ | Key repeat handling: | ||
+ | Repeat type 20 (EV_REP) | ||
+ | Repeat code 0 (REP_DELAY) | ||
+ | Value 400 | ||
+ | Repeat code 1 (REP_PERIOD) | ||
+ | Value 80 | ||
+ | Properties: | ||
+ | Property type 5 (INPUT_PROP_POINTING_STICK) | ||
+ | Testing ... (interrupt to exit) | ||
+ | </ | ||
+ | * Once evtest is working you can code against it: [[https:// | ||