User Tools

Site Tools


ir_receiver_setup_on_le_potato

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
ir_receiver_setup_on_le_potato [2023/05/05 12:06] – created austinir_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<code>   * Install Dependencies<code>
-emerge --ask media-tv/v4l-utils app-misc/lirc dev-python/python-evdev+emerge --ask media-tv/v4l-utils app-misc/lirc dev-python/python-evdev app-misc/evtest
 </code> </code>
   * Modprobe kernel modules<code>   * Modprobe kernel modules<code>
Line 49: Line 50:
 ir-keytable -c -w /lib/udev/rc_keymaps/my_remote.toml -t ir-keytable -c -w /lib/udev/rc_keymaps/my_remote.toml -t
 </code> </code>
 +  * Add the remote def to /etc/rc_maps.cfg<code>
 +#driver table                    file
 +*                              my_remote.toml
 +</code>
 +  * Load it on boot
 +    * create service <code>
 +mobilemouse /etc/init.d # cat irkeytable
 +#!/sbin/openrc-run
 +# Copyright 2023 Gentoo Authors
 +# Distributed under the terms of the GNU General Public License v2
 +
 +name="irkeytable"
 +description="add irkeytable config"
 +
 +start() {
 +    /usr/bin/ir-keytable -a /etc/rc_maps.cfg -s rc0
 +}
 +</code>
 +    * add to default run level<code>
 +rc-update add irkeytable default
 +</code>
 +  * Add any modules that you might need to autoload (my case was: ir-nec-decoder and ir-lirc-codec)<code>
 +echo "ir-nec-decoder\nir-lirc-codec" >> /etc/modprobe.d/lirc.conf
 +</code>
 +  * Reboot to verify its good and test with evtest<code>
 +austin@mobilemouse ~/mocp_i2c_lcd_ir_remote $ evtest
 +No device specified, trying to scan all of /dev/input/event*
 +Not running as root, no devices may be available.
 +Available devices:
 +/dev/input/event0:      Solid State System Co.,Ltd. USB PnP Audio Device
 +/dev/input/event5:      meson_ao_cec
 +/dev/input/event6:      meson-ir
 +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: "meson-ir"
 +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)
 +</code>
 +  * Once evtest is working you can code against it: [[https://github.com/adrenlinerush/mocp_i2c_lcd_ir_remote/blob/master/mocp_ir_daemon.py|My Example controlling moc]]
  
ir_receiver_setup_on_le_potato.1683288401.txt.gz · Last modified: 2024/09/22 22:08 (external edit)