bluez设置无 PIN 码配对模式
时间: 2023-11-28 10:04:46 浏览: 392
bluez-utils-3.24.tar.gz_bluez-libs_bluez-pin_bluez-utils-3.24.ta
在bluez中设置无PIN码配对模式可以通过以下步骤完成:
1. 编辑bluez的配置文件`/etc/bluetooth/main.conf`,找到以下行:
```
# Default PIN code for incoming connections
# Default value is empty, which is "no PIN code required"
#PINCode = 1234
```
2. 把`#PINCode = 1234`的注释去掉,并把PIN码改成空字符串:
```
# Default PIN code for incoming connections
# Default value is empty, which is "no PIN code required"
PINCode = ""
```
3. 重启bluetooth服务:
```
sudo service bluetooth restart
```
4. 现在你的设备应该可以无需输入PIN码进行配对了。
注意:这种方式虽然方便,但也会降低安全性,请谨慎使用。
阅读全文