美文网首页
Linux下的蓝牙键盘对接

Linux下的蓝牙键盘对接

作者: 山野村夫老王 | 来源:发表于2017-07-10 16:03 被阅读0次

    注:以下内容主要来自https://wiki.archlinux.org/index.php/bluetooth_keyboard
    1、lsusb看看能不能找到本机的蓝牙/USB蓝牙
    2、 bluetoothctl -a
    注意,这个指令用root权限,否则可能会找不到设备
    进入[bluetooth]#提示符
    [bluetooth]# power on激活蓝牙

    [bluetooth]# agent KeyboardOnly
    [bluetooth]# default-agent
    告诉主机去找蓝牙键盘设备

    [bluetooth]# pairable on进入配对模式,第一次才需要
    [bluetooth]# scan on 开始扫描
    [bluetooth]# pair 01:02:03:04:05:06 后面的mac地址是你的键盘mac地址
    [bluetooth]# trust 01:02:03:04:05:06 把键盘设置为可信设备

    [bluetooth]# connect 01:02:03:04:05:06 进行对接
    显示yes就对接成功了。

    补充:以下内容针对罗技K系列蓝牙,如k380这种可以对接多个蓝牙设备的
    这类设备有多个蓝牙服务,但是mac地址只有一个
    因此,如果不是默认连接的linux主机,则每次都需要重新去连接。也就是第一次配对成功之后,每次power on一下,然后scan on,然后键盘切换到对应的F2或者F3。具体原因我也不明白为什么。

    如果是一对一的蓝牙键盘,就不会出现这个问题。

    相关文章

      网友评论

          本文标题:Linux下的蓝牙键盘对接

          本文链接:https://www.haomeiwen.com/subject/xqxuhxtx.html