如何让 Logitech MX Anywhere 2 在 16.04(智能蓝牙)中工作

use*_*576 23 mouse bluetooth logitech 16.04

发布Logitech MX Anywhere 2 鼠标对后的新问题 但不执行任何操作

通过内置蓝牙管理器和 blueman 进行配对和连接。也可以通过命令行:

bluetoothctl
Run Code Online (Sandbox Code Playgroud)

输出见下文。

[MX Anywhere 2]# info DE:CE:68:71:F9:97
Device DE:CE:68:71:F9:97
    Name: MX Anywhere 2
    Alias: MX Anywhere 2
    Appearance: 0x03c2
    Icon: input-mouse
    Paired: yes
    Trusted: yes
    Blocked: no
    Connected: yes
    LegacyPairing: no
    UUID:                           (1800)
    UUID:                           (1801)
    UUID:                           (180a)
    UUID:                           (180f)
    UUID:                           (1812)
    UUID: Vendor specific           (00010000-0000-1000-8000-011f2000046d)
    Modalias: usb:v046DpB013d0007
[MX Anywhere 2]# paired-devices 
Device DE:CE:68:71:F9:97 MX Anywhere 2
Run Code Online (Sandbox Code Playgroud)

不起作用的是输入,如“鼠标不移动光标”

小智 54

我的设备是 Microsoft 制造的 Surface Edition 蓝牙 LE Arc Touch 鼠标。

在 OpenSuse Leap 之前,我无法将它与我在过去一年中尝试过的任何发行版连接起来。然后我知道这是可能的!但我喜欢 Ubuntu(我知道我知道)

遇到这个线程,所有内容看起来都与您读出的节目完全一样:

Name: Arc Touch Mouse SE
Alias: Arc Touch Mouse SE
Appearance: 0x03c2
 Icon: input-mouse
 Paired: yes  
 Trusted: yes
 Blocked: no
Connected: yes
LegacyPairing: no 
Run Code Online (Sandbox Code Playgroud)

还是什么都没有!即使它被明确列为已配对、可信、未阻止和已连接,也没有移动!我正要彻底放弃,但决定尝试最后一件事。

我使用“remove”删除了设备,并按照这个确切的顺序发出以下命令,这导致我的设备工作!经过一年的努力寻找出路。

[bluetooth]# power off
[bluetooth]# power on
[bluetooth]# scan on
[bluetooth]# connect XX:XX:XX:XX:XX:XX
[Arc Touch Mouse SE]# trust
[Arc Touch Mouse SE]# connect XX:XX:XX:XX:XX:XX
[Arc Touch Mouse SE]# pair
[Arc Touch Mouse SE]# unblock
[Arc Touch Mouse SE]# power off
[bluetooth]# power on
Run Code Online (Sandbox Code Playgroud)

所以我可以确认 Ubuntu 16.04 确实支持蓝牙 LE 设备


RBe*_*ell 8

由于这篇文章,我设法让我的 Anywhere MX2 在 Ubuntu 16.04 上工作。

在“蓝牙”配置中连接鼠标后 - 它仍然无法正常工作。运行 bluetoothctl 和“info”给了我这个:

?  ~ bluetoothctl 
[NEW] Controller 5C:51:4F:DC:FB:D0 ChromeLinux_CBDE [default]
[NEW] Device FB:59:51:BF:60:XX MX Anywhere 2
[bluetooth]# info FB:59:51:BF:60:XX
Device FB:59:51:BF:60:XX
    Name: MX Anywhere 2
    Alias: MX Anywhere 2
    Appearance: 0x03c2
    Icon: input-mouse
    Paired: yes
    Trusted: yes
    Blocked: no
    Connected: no
    LegacyPairing: no
    UUID: Generic Access Profile    (00001800-0000-1000-8000-00805f9b34fb)
    UUID: Generic Attribute Profile (00001801-0000-1000-8000-00805f9b34fb)
    Modalias: usb:v046DpB013d0007
Run Code Online (Sandbox Code Playgroud)

如您所见 - 我的设备不知何故未连接。因此没有响应。我所做的只是调用“连接”:

[bluetooth]# connect FB:59:51:BF:60:XX
Attempting to connect to FB:59:51:BF:60:XX
[CHG] Device FB:59:51:BF:60:XX Connected: yes
Connection successful
[CHG] Device FB:59:51:BF:60:XX UUIDs: 00001800-0000-1000-8000-00805f9b34fb
[..snip..]
[CHG] Device FB:59:51:BF:60:XX Paired: yes
Run Code Online (Sandbox Code Playgroud)

在那之后,一切都“正常工作(TM)”。感谢您为这篇文章提供有用的附加信息。