add fake-wheel

This commit is contained in:
2026-06-01 01:25:58 +01:00
parent 423a914347
commit bc5c8c0cff
7 changed files with 1456 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/bin/bash
# Quick script to check if the fake wheel device is visible
echo "=== Checking for Gaming Wheel Devices ==="
echo
echo "1. Devices in /dev/input/by-id/:"
ls -l /dev/input/by-id/ 2>/dev/null | grep -i "logitech\|wheel\|g29" || echo " No wheel devices found"
echo
echo "2. All input devices:"
ls /dev/input/event* 2>/dev/null
echo
echo "3. Input devices info (from /proc/bus/input/devices):"
if [ -f /proc/bus/input/devices ]; then
grep -A 10 -i "logitech\|wheel\|g29\|046d.*c24f" /proc/bus/input/devices 2>/dev/null || echo " No wheel found in input devices"
else
echo " /proc/bus/input/devices not found"
fi
echo
echo "4. Try running: sudo evtest"
echo " Then select the wheel device to see live events"