我如何在ubuntu上安装bluez进行开发?

时间:2016-11-29 18:00:09

标签: c ubuntu bluetooth raspberry-pi bluez

初学者问题:

我想在我的Raspberry Pi中使用BlueZ驱动程序,以便以简单的方式连接到我正在编写的iPhone应用程序,但我尝试在我的Ubuntu启动时首先对其进行原型设计(我双启动macbook pro w / macOS sierra / Ubuntu 16.04)。我无法获得蓝牙标头" bluetooth.h"出现在我的c程序中。我尝试过sudo apt-get install bluez,但执行此命令后,我的系统中没有出现bluetooth.h标头。以下是我的原型应用程序的包含:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <bluetooth/bluetooth.h>
#include <bluetooth/hci.h>
#include <bluetooth/hci_lib.h>

当我gcc该程序时,我链接到-lbluetooth,但我的系统也无法找到该库。

我应该使用BlueZ,对吧?我读过BlueZ是Linux的官方蓝牙堆栈,我打算把Raspbian Jesse放在我的覆盆子上。我只是在理智地检查我是否在正确的道路上。

1 个答案:

答案 0 :(得分:5)

http://docs.cubieboard.org/tutorials/common/development/bluez_programming

看起来本教程有答案,sudo apt-get install bluez安装了驱动程序,但没有安装相关的开发标题。 而是使用sudo apt-get install bluez libbluetooth-dev。 现在-lbluetooth被发现为lib。