Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 4943

Troubleshooting • Raspberry Pi 4 B as keyboard

$
0
0
Hello i am trying to make my raspberry Pi 4 B act as keyboard for my computer.The configuration of gadget mode seems to be successful because in device manager i can see new keyboard name Pi keyboard but when i run command that should send the keystrokes to PC nothing happens.

This is the configuration of the gadget mode:
#!/bin/bash

# Načtení potřebného modulu
modprobe libcomposite
cd /sys/kernel/config/usb_gadget/

# Vytvoření gadgetu
mkdir -p pi_keyboard
cd pi_keyboard

# Nastavení základních parametrů zařízení
echo 0x1d6b > idVendor # Vendor ID (Linux Foundation)
echo 0x0104 > idProduct # Product ID (Multifunction Composite Gadget)
echo 0x0100 > bcdDevice # Device release number
echo 0x0200 > bcdUSB # USB 2.0

# Nastavení popisných řetězců
mkdir -p strings/0x409
echo "1234567890" > strings/0x409/serialnumber
echo "Raspberry Pi" > strings/0x409/manufacturer
echo "Pi Keyboard" > strings/0x409/product

# Konfigurace zařízení
mkdir -p configs/c.1/strings/0x409
echo "Config 1" > configs/c.1/strings/0x409/configuration
echo 120 > configs/c.1/MaxPower

# Vytvoření HID funkce (klávesnice)
mkdir -p functions/hid.usb0
echo 1 > functions/hid.usb0/protocol # Klávesnice
echo 1 > functions/hid.usb0/subclass # Boot Interface Subclass
echo 8 > functions/hid.usb0/report_length # Délka reportu
echo -ne \
'\x05\x01\x09\x06\xa1\x01\x05\x07\x19\xe0\x29\xe7\x15\x00\x25\x01\x75\x01\x95\x08\x81\x02'\
'\x95\x01\x75\x08\x25\x65\x19\x00\x29\x65\x81\x00\xc0' > functions/hid.usb0/report_desc

# Spojení HID funkce s konfigurací
ln -s functions/hid.usb0 configs/c.1/

# Aktivace gadgetu
ls /sys/class/udc > UDC

And i tried to use these commands but when i use them nothing happens and there isn´t any error message
echo -ne '\x00\x00\x04\x00\x00\x00\x00\x00' > /dev/hidg0
echo -ne '\x00\x00\x00\x00\x00\x00\x00\x00' > /dev/hidg0

if anyone has some idea how to fix it or if someone experienced the same problem it would be big help

Statistics: Posted by Kubiiisek — Mon Dec 02, 2024 4:41 pm



Viewing all articles
Browse latest Browse all 4943

Trending Articles