我在 Chrome 中使用 WebHID 与支持 USB 的数字秤进行通信。我能够连接到体重秤并订阅体重数据流,如下所示:
// Get a reference to the scale.
// 0x0922 is the vendor of my particular scale (Dymo).
let device = await navigator.hid.requestDevice({filters:[{vendorId: 0x0922}]});
// Open a connection to the scale.
await device[0].open();
// Subscribe to scale data inputs at a regular interval.
device[0].addEventListener("inputreport", event => {
const { data, device, reportId } = event;
let buffArray = new Uint8Array(data.buffer);
console.log(buffArray);
});
我现在收到格式的常规输入Uint8Array(5) [2, 12, 255, 0, 0]
,其中第四个位置是重量数据。如果我把东西放在秤上,它会变成Uint8Array(5) [2, 12, 255, 48, 0]
4.8 磅。
我想将秤归零(去皮),使其当前的受阻状态成为新的零点。成功归零后,我希望秤Uint8Array(5) [2, 12, 255, 0, 0]
再次开始返回。我目前对此的最佳猜测是:
device[0]
.sendReport(0x02, new Uint8Array([0x02]))
.then(response => { console.log("Sent output report " + response) });
这是基于HID 销售点使用表中的下表:
第一个字节是报告 ID,根据表格为 2。对于第二个字节,我希望将 ZS 操作设置为 1,因此设置为 00000010,因此也设置为 2。sendReport
将 Report Id 作为第一个参数,并将所有后续数据的数组作为第二个参数。当我将它发送到设备时,它不会被拒绝,但它不会将比例归零,并且response
是未定义的。
如何使用 WebHID 将此比例归零?