我刚开始研究 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
.
如何找出数据需要采用什么数据和格式才能使其正常工作?