|
本帖最后由 @allen 于 2016-5-11 15:04 编辑
1.更新与下载工具- apt-get update
- apt-get install brcm-patchram-plus-nexus7 // debian 没有这个包,但cubieez 自带有了这个包
- apt-get install bluez-utils bluez-compat obexftp obexfs libbluetooth3 libbluetooth-dev
- apt-get insatll bluetooth bluez-utils bluez-alsa
- apt-get-install vlc
复制代码 2.上传蓝牙固件- brcm_patchram_plus --tosleep=50000 --no2bytes --enable_hci --baudrate 1500000 --use_baudrate_for_download --patchram /lib/firmware/ap6330/bcm40183b2.hcd /dev/ttyS2 &
复制代码 注意这是一条命令,因为太长了。
3.运行- sudo gpasswd -a linaro bluetooth
复制代码 开启你的蓝牙音箱使其处于匹配状态,然后运行屏幕输出类似:- Scanning ...
- <hadware_id> NAME
复制代码 记下hadware_id,运行:- bluez-simple-agent hci0 <hadware_id>
复制代码 没有任何打印就说明匹配成功,这个命令只需执行一次,以后不需要再次匹配除非手动删除匹配。
将音箱连接至audio,最后运行- bluez-test-audio connect <hardware_id>
- bluez-test-device trusted <hardware_id> yes
-
复制代码 4.设置配置文件
将原来的内容注销或者删除,添加下列内容:- pcm.!default { #这里将默认音频输出设置为蓝牙
- type bluetooth
- device <hardware_id> # change this MAC address using the command "hcitool scan"
- profile "auto"
- }
复制代码 然后运行:- sudo vi /etc/bluetooth/audio.conf
复制代码 使 [General] 一节只有:- Enable=Source,Sink,Media,Socket
复制代码 最后运行:- sudo service bluetooth restart
复制代码 5.运行测试
在桌面打开VLC播放mp3音频或打开终端执行命令之后你就会听到美妙的音乐在蓝牙音响里响起。
|
|