我想知道如何构建 Android 应用程序处理从 Raspberry pi 发送的数据。
我在 Raspberry Pi 上安装了 pybluez 模块并使用以下 python 脚本发送数据。
import bluetooth
port = 1
sock=bluetooth.BluetoothSocket( bluetooth.RFCOMM )
sock.connect((targetBluetoothMacAddress, port))
#targetBluetoothMacAddress is my phone MacAddress
sock.send("hello!!")
sock.close()
在我的手机上,我确实看到两台设备配对成功。但是找不到从 Raspberry Pi 发送数据的方法。有没有办法构建一个从 sock.send() 处理数据的应用程序?