OpenWRTでPSゲームコントローラを使用する方法は?

OpenWRTでPSゲームコントローラを使用する方法は?

私はOpenWRTとLinuxの両方について初めて触れました。だから私に話してください。

OpenWRTを使用して、コンソールゲームパッドのボタンをArduino Yunのコンソールに印刷しようとしています。opkg次のパッケージをインストールしました。

kmod-input-core - 3.8.3-1
kmod-input-joydev - 3.8.3-1

以下を使用してlsusbコントローラを表示できます。

root@Arduino:~# lsusb -D /dev/bus/usb/001/004
Device: ID 054c:05c4 Sony Corp.
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0
  bDeviceProtocol         0
  bMaxPacketSize0        64
  idVendor           0x054c Sony Corp.
  idProduct          0x05c4
  bcdDevice            1.00
  iManufacturer           1 Sony Computer Entertainment
  iProduct                2 Wireless Controller
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           41
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xc0
      Self Powered
    MaxPower              500mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      0 No Subclass
      bInterfaceProtocol      0 None
      iInterface              0
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.11
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength     483
         Report Descriptors:
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x84  EP 4 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               5
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               5
Device Status:     0x0000
  (Bus Powered)

私は高速検索をしましたが、Linuxでゲームパッドにアクセスすることに関連するほとんどの結果では、たとえば/dev/input/js0アクセスについて言及しました。いつもそこにあるゲームパッドだけがあり、/dev/input/event0下にソニーゲームパッドが表示されてよくわかりません。/dev/usb/001/004まず正しく初期化されたか。すべてのヒント/コツが役に立ちます。

もう1つの問題は、押したキーにアクセスしてコンソールに印刷することです。 Yunではディスク容量が限られており、まだSDカードを設定していないため、まだgcc / g ++はありません。今すぐ最速の選択は、Pythonやシェルスクリプトを使用することだと思います。

小さなスクリプトで始めました。この投稿:

#!/usr/bin/env python
import sys


pipe = open('/dev/bus/usb/001/004','r')
#pipe = open('/dev/input/event0','r')
byte = []

while 1:
        for bit in pipe.read(1):
                byte.append('%5X' % ord(bit))
                if len(byte) == 8:
                        print byte
                        byte = []

出力は次のとおりです。

['   12', '    1', '    2', '    0', '    0', '    0', '    0', '   40']
['    5', '   4C', '    5', '   C4', '    1', '    0', '    1', '    2']
['    0', '    1', '    9', '    2', '   29', '    0', '    1', '    1']
['    0', '   C0', '   FA', '    9', '    4', '    0', '    0', '    2']
['    3', '    0', '    0', '    0', '    9', '   21', '   11', '    1']
['    0', '    1', '   22', '   E3', '    1', '    7', '    5', '   84']
['    3', '   40', '    0', '    5', '    7', '    5', '    3', '    3']

これは決して変わらないでしょう。

また、pygameを使用する多くの例を見ましたが、pygameを正常にインストールできず(を使用してopkg install python-pygame)、SDを設定するまでソースからgcc / g ++をコンパイルするスペースがありません。

簡単に言うと:ゲームパッドが正しくインストールされているかどうかを確認するには?そうでない場合は、openwrtにUSBゲームパッドをインストールする正しい方法は何ですか?ゲームパッドのキー入力をコンソールに印刷する最も簡単で簡単な方法は何ですか?

ベストアンサー1

おすすめ記事