2

我在 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 将此比例归零?

4

1 回答 1

1

所以我最终在一个非常相似的地方 - 试图以编程方式将 USB 刻度归零。设置 ZS 似乎没有做任何事情。使用 Wireshark + Stamps.com 应用程序查看他们是如何做到的,并注意到发送的实际上是强制归零,即 0x02 0x01(报告 ID = 2,EZR)。现在有这个工作。

于 2021-08-26T01:43:00.750 回答