我正在尝试在raspberry pi上使用Bluez(python)从ionic2应用程序接收蓝牙数据。我使用的是“native ionic”的内置蓝牙,这是来自Cordova的bluetoothSerial
框架
我无法接收有关锉刀的任何数据。我正在使用list()
检查设备是否连接到rasp(它返回true)。
我正在使用write发送“hello world”消息。
Ionic2脚本:
BluetoothSerial.connect("B8:27:EB:F7:3B:B5");
BluetoothSerial.write("hello world").then(this.success, this.failure);
写入后,我的回调成功被调用,这意味着数据被正确发送。 我想知道ionic2 app发送数据的蓝牙端口。 Bluez需要一个特定的端口来收听。