1# Copyright 2023 Google LLC 2# SPDX-License-Identifier: Apache-2.0 3 4description: | 5 Linux evdev based input device 6 7 Allows using a Linux evdev device to read input events and report them back 8 as Zephyr input events. 9 10 Example configuration: 11 12 evdev { 13 compatible = "zephyr,native-linux-evdev"; 14 }; 15 16 Then run the binary specifying the evdev device with the --evdev flag, for 17 example: 18 19 ./build/zephyr/zephyr.exe --evdev=/dev/input/event0 20 21compatible: "zephyr,native-linux-evdev" 22 23include: base.yaml 24