0

我刚开始研究 webusb 并尝试使用它来打开blink(1) mk2。我能够发现设备、打开它、声明一个接口并调用controlTransferOut. 我现在遇到的麻烦是不知道我应该发送什么数据以使其闪烁或亮起。

我一直在使用这个示例,其中有人能够使用 Chrome 扩展程序来控制它,使用该chrome.usb界面作为尝试使其工作的灵感。我写了以下代码:

const VENDOR_ID = 0x27b8;

navigator.usb.requestDevice({
  filters: [{
    vendorId: VENDOR_ID
  }]
}).then(selectedDevice => {
  device = selectedDevice;
  return device.open();
}).then(() => {
  return device.selectConfiguration(1);
}).then(() => {
  return device.claimInterface(0);
}).then(() => {
  return device.controlTransferOut({
    requestType: 'class',
    recipient: 'interface',
    request: 0x09,
    value: 1,
    index: 0
  });
}).then(() => {
  const r = Math.floor((Math.random() * 255) + 0);
  const g = Math.floor((Math.random() * 255) + 0);
  const b = Math.floor((Math.random() * 255) + 0);
  // not entirely sure what is going on below...
  const fadeMillis = 500;
  const th = (fadeMillis / 10) >> 8;
  const tl = (fadeMillis / 10) & 0xff;

  const data = new Uint8Array([0x01, 0x63, r, g, b, th, tl, 0x00, 0x00]).buffer;
  return device.transferIn(1, data);
}).then(result => {
  console.log(result);
}).catch(error => {
  console.log(error);
});

调用时失败并出现传输错误controlTransferOut。但是,如果我将 更改requestType为标准,则在调用transferIn.

如何找出数据需要采用什么数据和格式才能使其正常工作?

4

1 回答 1

1

您需要包含data在第一个controlTransferOut. transferIn不向设备发送数据,而是接收它。

编辑添加:不幸的是,如果 USB 设备没有实现标准设备类,则没有通用方法来确定发送到 USB 设备或从 USB 设备发送的数据的正确格式。blink(1) mk2 使用 HID 协议,但它发送和接收的功能报告的特定格式是非标准的。

于 2017-08-21T22:37:37.340 回答