gpt4 book ai didi

java - 当多个键盘连接到 USB 端口时,向指定的 USB 键盘发送消息

转载 作者:行者123 更新时间:2023-12-01 04:41:22 24 4
gpt4 key购买 nike

我开发了简单的应用程序,使键盘充当输出设备,它向键盘发送命令以打开大写锁定 LED。现在的问题是,当连接两个或多个键盘时,命令会广播到所有键盘,并且所有键盘中的所有大写锁定 LED 都会打开。有没有一种方法可以用来向特定键盘发送消息

最佳答案

可以获取串口的名称,如COM1、COM2,然后将数据发送到特定的键盘。

 portList = CommPortIdentifier.getPortIdentifiers();
while (portList.hasMoreElements())
{
portId = (CommPortIdentifier) portList.nextElement();
if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL)
{
if (portId.getName().equals("COM2")) {
}

关于java - 当多个键盘连接到 USB 端口时,向指定的 USB 键盘发送消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16459283/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com