问题描述
帖子后的新问题\n Logitech MX Anywhere 2 mouse pairs but doesn’t do anything
通过 内置 蓝牙管理器和 blueman 进行配对和连接。\n也可以通过命令行:
bluetoothctl
输出见下文。
[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
输入不起作用,如“鼠标不移动光标”
最佳方案
我的设备是 Microsoft 制造的 Surface Edition Bluetooth 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
还是什么都没有!即使它清楚地列为配对、可信、畅通和连接,也没有任何动作!我正要永远放弃,但决定尝试最后一件事……
我使用 “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
所以我可以确认 Ubuntu 16.04 确实支持蓝牙 LE 设备
次佳方案
感谢这篇文章,我设法让我的 Anywhere MX2 在 Ubuntu 16.04 上工作。
在 “Bluetooth” 配置中连接鼠标后 – 它仍然无法正常工作。\n运行 bluetoothctl 和“信息”给了我这个:
➜ ~ 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
如您所见 – 我的设备不知何故未连接。因此没有反应。我所做的只是调用 ‘connect’:
[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
之后一切都“正常工作(TM)”。感谢您为这篇文章提供有用的附加信息。