19

私の Android アプリでは、 AR.Droneを制御するためにUSB-OTG 経由で 3DConnexion SpaceNavigatorから値を読み取ります。

今、私はマウスで同じことをしたいと思っています。ただし、Android はマウスをつかみ、マウス カーソルを表示しています。マウスのベンダーと製品 ID を使用してデバイス フィルターを作成すると、SpaceNavigator のように取得できません。(strangely, both are HID -- I get no cursor with the SpaceNavigator).

カーソルなしで生のマウスデータを取得する方法はありますか?

ストックAndroidで完璧でしょう。そのためにROMを変更することも検討します。

4

1 に答える 1

3

アプリケーションがマウスを (ホストである間は USB HID デバイスとして) 要求するとすぐに、Android はカーソルを非表示にし、生データを読み取ることができます。これは標準の Android でも動作するはずですが、デバイスが USB ホスト モードをサポートしている必要があり、マウスを接続するには USB OTG ケーブルが必要です。

基本的な手順:

  • デバイスを列挙する
  • USB デバイスへのアクセス許可を求める
  • デバイスを要求する
  • HID エンドポイントからデータ パッケージを読み取る
  • X と Y の位置、ボタンのクリック、スクロール ホイールの回転をデータ パッケージから解析する

私のために働くサンプルコード(Android 5.0):

UsbManager usbManager;
UsbDevice usbDevice;

private void connect() {
    this.usbManager = (UsbManager) context.getSystemService(Context.USB_SERVICE);
    HashMap<String, UsbDevice> deviceList = usbManager.getDeviceList();

    // just get the first enumerated USB device
    Iterator<UsbDevice> deviceIterator = deviceList.values().iterator();
    if (deviceIterator.hasNext()) {
        this.usbDevice = deviceIterator.next();
    }

    if (usbDevice == null) {
        Log.w(TAG, "no USB device found");
        return;
    }

    // ask for permission

    final String ACTION_USB_PERMISSION = "com.android.example.USB_PERMISSION";
    final BroadcastReceiver mUsbReceiver = new BroadcastReceiver() {

        public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();
            if (ACTION_USB_PERMISSION.equals(action)) {
                synchronized (this) {
                    UsbDevice device = (UsbDevice)intent.getParcelableExtra(UsbManager.EXTRA_DEVICE);

                    if (intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false)) {
                        if(device != null){
                            // call method to set up device communication
                            Log.i(TAG, "permission granted. access mouse.");

                            // repeat in a different thread
                            transfer(device);
                        }
                    }
                    else {
                        Log.d(TAG, "permission denied for device " + device);
                    }
                }
            } else if (UsbManager.ACTION_USB_DEVICE_DETACHED.equals(action)) {
                UsbDevice device = (UsbDevice)intent.getParcelableExtra(UsbManager.EXTRA_DEVICE);
                if (device != null) {
                    // TODO:
                    // call your method that cleans up and closes communication with the device
                    // usbInterface.releaseInterface();
                    // usbDeviceConnection.close();
                }
            }
        }
    };

    PendingIntent mPermissionIntent = PendingIntent.getBroadcast(context, 0, new Intent(ACTION_USB_PERMISSION), 0);
    IntentFilter filter = new IntentFilter(ACTION_USB_PERMISSION);
    context.registerReceiver(mUsbReceiver, filter);

    usbManager.requestPermission(usbDevice, mPermissionIntent);
}

private void transfer(UsbDevice device) {

    int TIMEOUT = 0;
    boolean forceClaim = true;

    // just grab the first endpoint
    UsbInterface intf = device.getInterface(0);
    UsbEndpoint endpoint = intf.getEndpoint(0);
    UsbDeviceConnection connection = this.usbManager.openDevice(device);
    connection.claimInterface(intf, forceClaim);

    byte[] bytes = new byte[endpoint.getMaxPacketSize()];

    connection.bulkTransfer(endpoint, bytes, bytes.length, TIMEOUT);

    // depending on mouse firmware and vendor the information you're looking for may
    // be in a different order or position. For some logitech devices the following 
    // is true:

    int x = (int) bytes[1];
    int y = (int) bytes[2];
    int scrollwheel = (int) bytes[3]

    // call a listener, process your data ...
}
于 2016-10-13T20:07:03.083 に答える