Xamarin Android 蓝牙连接

Xamarin Android Bluetooth Connection

我正在尝试制作一个连接到蓝牙心率监测器的应用程序。我搜索了很多文章和教程,但它们没有告诉您如何设置或详细介绍蓝牙。 有人知道从哪里开始吗?

你是说你想用 Xamarin.Android 连接到蓝牙串行设备吗?

如果是,

首先,在 Android 设备上获取默认 BluetoothAdapter 的实例并确定它是否已启用:

BluetoothAdapter adapter = BluetoothAdapter.DefaultAdapter;
if(adapter == null)
  throw new Exception("No Bluetooth adapter found.");

if(!adapter.IsEnabled)
  throw new Exception("Bluetooth adapter is not enabled.");

接下来,获取代表您要连接的物理设备的 BluetoothDevice 实例。您可以使用适配器的 BondedDevices 集合获取当前配对设备的列表。我使用一些简单的 LINQ 来查找我正在寻找的设备:

BluetoothDevice device = (from bd in adapter.BondedDevices 
                      where bd.Name == "NameOfTheDevice" select bd).FirstOrDefault();

if(device == null)
   throw new Exception("Named device not found.");

最后,使用设备的CreateRfCommSocketToServiceRecord方法,会return一个BluetoothSocket可用于连接和通信。请注意,下面指定的 UUID 是 SPP 的标准 UUID:

_socket = device.CreateRfcommSocketToServiceRecord(UUID.FromString("00001101-0000-1000-8000-00805f9b34fb"));

await _socket.ConnectAsync();

现在设备已连接,通过 BluetoothSocket 对象上的 InputStreamOutputStream 属性进行通信这些属性是标准的 .NET Stream 对象,可以完全按照您的方式使用d 期望:

// Read data from the device
await _socket.InputStream.ReadAsync(buffer, 0, buffer.Length);

// Write data to the device
await _socket.OutputStream.WriteAsync(buffer, 0, buffer.Length);

你可以参考