This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ir_receiver_setup_on_le_potato [2023/05/05 12:16] – austin | ir_receiver_setup_on_le_potato [2024/09/22 22:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 3: | Line 3: | ||
* 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) | * 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 54: | Line 54: | ||
* | * | ||
</ | </ | ||
- | * Load it on boot by added ot /etc/rc.cfg< | + | * Load it on boot |
- | ir-keytable -a / | + | * create service < |
+ | mobilemouse | ||
+ | # | ||
+ | # Copyright 2023 Gentoo Authors | ||
+ | # Distributed under the terms of the GNU General Public License v2 | ||
+ | |||
+ | name=" | ||
+ | description=" | ||
+ | |||
+ | start() { | ||
+ | /usr/bin/ir-keytable -a / | ||
+ | } | ||
+ | </ | ||
+ | * 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)< | + | * Add any modules that you might need to autoload (my case was: ir-nec-decoder |
- | echo " | + | echo " |
</ | </ | ||
* Reboot to verify its good and test with evtest< | * Reboot to verify its good and test with evtest< | ||
Line 109: | Line 123: | ||
Testing ... (interrupt to exit) | Testing ... (interrupt to exit) | ||
</ | </ | ||
+ | * Once evtest is working you can code against it: [[https:// | ||