greenskyhyj 发表于 2013-1-10 16:05:28

树莓派如何连接蓝牙键盘(新)

以前发过一贴 http://www.shumeipai.net/thread-829-1-1.html (树莓派用上蓝牙键盘),不过后来做新的系统,发现重要的hidd命令找不到,很让我郁闷,折腾了1个多月了,终于在今天解决了,原始是“Just a quick note, hidd has gone in the latest build in favour of using DBUS to get things going…. here are the docs about it on the bluez wiki”

现在把新的方法贴出来,供大家分享。

硬件:ggmm 蓝牙键盘(比较小巧,和一本书大小差不多,这个记得是100多,够买半个树莓派了),
京东上买了个胜为(shengwei)UDC-321 USB蓝牙适配器 迷你免驱型(29元)。

过程:
1、$ sudo apt-get-yinstall bluetooth bluez-utils gnome-bluetooth

:P 这是重要的一步,安装hidd命令的步骤
bluez-compat含有hidd ,从此处
http://packages.debian.org/it/wheezy/armhf/bluez-compat/download
下载后安装,安装后的hidd有些问题,用原来备份的hidd替换,命令
Sudo cp hidd /usr/bin/;sudo chmod +x /usr/bin/hidd

回车就ok了。我把bluez-compat 和替换的hidd上传到附件,供大家下载



2、打开蓝牙键盘的on,启动收索蓝牙适配器,灯一直闪着,不用管他
3、$ sudo hidd --search
  Searching ...
  Connecting to device BC:20:42:A0:00:00

4、搜索到就能用了。
  $ sudonano/etc/rc.local
  在/etc/rc.local开头添加如下一行,保证下次开机就能使用。
  /usr/bin/hidd --search
  确认/etc/rc.local以exit 0结尾 。
5、每次开机前,需要打开蓝牙键盘的on,启动收索蓝牙适配器,灯一直闪着,不用管他,系统会自动搜索键盘




高调感谢以下哥们的说明
Pairing keyboard with latest version of BlueZ in debian

Just a quick note, hidd has gone in the latest build in favour of using DBUS to get things going…. here are the docs about it on the bluez wiki

http://wiki.bluez.org/wiki/HOWTO/InputDevices

this didnt work for my debian install so I had to install the bluez-compat package to get hidd back. Now I can still use it to connect my keyboard
页: [1]
查看完整版本: 树莓派如何连接蓝牙键盘(新)