我目前正在开发一个 Windows Phone 8 应用程序,它(希望)能够使用蓝牙 OBD-II 适配器通过蓝牙连接到车辆。我对 WP8 编程相当陌生,尽管我试图不尝试寻求帮助,但我有点想不通,也不知道该去哪里或该做什么。
此外,如果有人想知道我正在测试连接到汽车的设备,那就是这里的这个人
编辑:: 到目前为止,我已经设置了我的代码来检测蓝牙适配器是否已启用,我目前正在研究(或试图理解)如何向用户显示配对设备,以便他们可以选择一个。但我现在的主要脑块是,如何从 OBD-II 适配器读取(或提取)数据?它在软件文档中说:
为了表示 Kiwi Wifi 或 Kiwi 蓝牙已准备好处理命令,设备将输出一个大于号 (>)。
因此,如果我正确理解了这一点,我需要检查 > ,对吗?但是怎么做?我已经检查了大量来源,但没有一个真正解释如何。我遇到过 IBuffer 之类的东西,但我对此一无所知。
如果我所说的没有意义,那么简单地说。
- 从 OBD 适配器读取数据
- 将数据写入 OBD 适配器(软件文档说我需要发送 ASCII 码,我有这些)
如果我能理解如何读/写它,那么我认为我应该能够将数据操作回给用户;我希望。
编辑 2::
private async void checkBluetooth()
{
SolidColorBrush statuscolor = new SolidColorBrush();
try
{
PeerFinder.AlternateIdentities["Bluetooth:Paired"] = "";
var devices = await PeerFinder.FindAllPeersAsync();
bluetoothStatus.Text = "Online";
statuscolor.Color = Colors.Green;
bluetoothStatus.Foreground = statuscolor;
if (devices.Count == 0)
{
MessageBox.Show("No paired bluetooth devices have been found, please pair your OBD adapter first!");
await Windows.System.Launcher.LaunchUriAsync(new Uri("ms-settings-bluetooth:"));
}
PeerInformation peerInfo = devices.FirstOrDefault(c => c.DisplayName.Contains("PLX"));
if (peerInfo == null)
{
MessageBox.Show("No paired PLX adapter found, please pair the PLX OBD adapter!");
await Windows.System.Launcher.LaunchUriAsync(new Uri("ms-settings-bluetooth:"));
}
StreamSocket socket = new StreamSocket();
await socket.ConnectAsync(peerInfo.HostName, "1");
await socket.ConnectAsync(peerInfo.HostName, peerInfo.ServiceName);
}
catch (Exception ex)
{
if ((uint)ex.HResult == 0x8007048F)
{
bluetoothStatus.Text = "Offline";
statuscolor.Color = Colors.Red;
bluetoothStatus.Foreground = statuscolor;
}
}
}