如何捕捉未知USB OTG设备的信号



我有一个USB OTG设备,它的作用就像鼠标,是在中国买的,没有太多关于所用控制器的信息。当我把它连接到我的android时,有一个鼠标光标,设备有5个硬按钮(左、右、上、下、回车(。我想为我的应用程序编程按钮,以执行特定任务。所以我需要读取输入信号并覆盖它们。

我该如何捕捉信号?

我找到了供应商(0x04D9(和产品id(0x2519(以及控制器名称联想Calliope USB键盘。但不知道用过的芯片,它是秘密的。

它不适用于方法onKeyDowndispatchKeyEvent。同样不使用USB serial Lib,因为该设备没有用所提供的VID和PID找到/识别(见下文与FatihŞennik的讨论,其他设备可以用它识别(。

我目前的假设是,我无法获得信号是硬件/芯片问题。但奇怪的是,该设备在其他方面做了它应该做的事情

您可以使用USB串行库,例如https://github.com/mik3y/usb-serial-for-android并提供您的USB OTG设备的供应商和产品ID来控制它。因此,您可以在任何监视器中捕获左、右、上、下和十六进制代码,并基于原始字节,您可以进行类似开关的操作。

UsbSerialInterface.UsbReadCallback mCallback = new UsbSerialInterface.UsbReadCallback() { 
//Defining a Callback which triggers whenever data is read.
@Override
public void onReceivedData(byte[] arg0) {
String data = null;
try {
data = new String(arg0, "UTF-8");
data.concat("/n");
switch() // etc
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
};

让我们首先尝试将我们的android手机连接到USB otg设备。至于产品和供应商ID,当你把它插到你的电脑上时,你可以找到它。如果连接建立了,那么剩下的就来了。如果你能在这里分享USB Otg设备的数据表,那会很有帮助。

public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
UsbManager manager = (UsbManager) getSystemService(Context.USB_SERVICE);
ProbeTable customTable = new ProbeTable();
customTable.addProduct(0x0403, 0x6001, CdcAcmSerialDriver.class);
List<UsbSerialDriver> availableDrivers = new UsbSerialProber(customTable).findAllDrivers(manager);
ArrayAdapter<String> deviceList = new ArrayAdapter<String>(MainActivity.this, android.R.layout.simple_list_item_2);
ListView listDevices = (ListView) findViewById(R.id.listView);
if(!availableDrivers.isEmpty()) {
for(UsbSerialDriver driver: availableDrivers) {
deviceList.add(driver.getDevice().getDeviceName());
}
listDevices.setAdapter(deviceList);
} else {
Toast.makeText(getApplicationContext(), "No devices found", Toast.LENGTH_LONG).show();
}
}
}

如果是USB隐藏设备,尝试此代码可能会有所帮助;

UsbManager mManager = (UsbManager) getSystemService(Context.USB_SERVICE);
HashMap<String, UsbDevice> deviceList = mManager.getDeviceList();
Iterator<UsbDevice> deviceIterator = deviceList.values().iterator();
while (deviceIterator.hasNext())
{
UsbDevice device = deviceIterator.next();
Log.i(TAG,"Model: " + device.getDeviceName());
Log.i(TAG,"ID: " + device.getDeviceId());
Log.i(TAG,"Class: " + device.getDeviceClass());
Log.i(TAG,"Protocol: " + device.getDeviceProtocol());
Log.i(TAG,"Vendor ID " + device.getVendorId());
Log.i(TAG,"Product ID: " + device.getProductId());
Log.i(TAG,"Interface count: " + device.getInterfaceCount());
Log.i(TAG,"---------------------------------------");
// Get interface details
for (int index = 0; index < device.getInterfaceCount(); index++)
{
UsbInterface mUsbInterface = device.getInterface(index);
Log.i(TAG,"  *****     *****");
Log.i(TAG,"  Interface index: " + index);
Log.i(TAG,"  Interface ID: " + mUsbInterface.getId());
Log.i(TAG,"  Inteface class: " + mUsbInterface.getInterfaceClass());
Log.i(TAG,"  Interface protocol: " + mUsbInterface.getInterfaceProtocol());
Log.i(TAG,"  Endpoint count: " + mUsbInterface.getEndpointCount());
// Get endpoint details 
for (int epi = 0; epi < mUsbInterface.getEndpointCount(); epi++)
{
UsbEndpoint mEndpoint = mUsbInterface.getEndpoint(epi);
Log.i(TAG,"    ++++   ++++   ++++");
Log.i(TAG,"    Endpoint index: " + epi);
Log.i(TAG,"    Attributes: " + mEndpoint.getAttributes());
Log.i(TAG,"    Direction: " + mEndpoint.getDirection());
Log.i(TAG,"    Number: " + mEndpoint.getEndpointNumber());
Log.i(TAG,"    Interval: " + mEndpoint.getInterval());
Log.i(TAG,"    Packet size: " + mEndpoint.getMaxPacketSize());
Log.i(TAG,"    Type: " + mEndpoint.getType());
}
}
}
Log.i(TAG," No more devices connected.");
}

如果什么都不起作用的解决方案:我得到了一个arduino控制器,并将其焊接到按钮上。没有那么复杂。

重要的是,控制器支持hid,例如带有atmega32u4芯片的leonardo pro micro。控制器的代码可以很容易地在谷歌上找到。

然后它可以在KeyDown或KeyUp等上进行覆盖。

相关内容

  • 没有找到相关文章

最新更新