我目前正在开发一个应用程序,它会向蓝牙LE设备发送消息。第一次启动时一切正常,但在第二次启动时,我得到一个例外。
申请代码
getDevices()函数
public async Task<List<string>> getDevices()
{
Debug.WriteLine("C");
foreach (DeviceInformation di in await DeviceInformation.FindAllAsync(GattDeviceService.GetDeviceSelectorFromUuid(new Guid("0000ffe0-0000-1000-8000-00805f9b34fb"))))
{
Debug.WriteLine("D");
Debug.WriteLine(di.Name);
Debug.WriteLine(di.Id);
Debug.WriteLine(di.IsEnabled);
GattDeviceService bleService = await GattDeviceService.FromIdAsync(di.Id);
Debug.WriteLine(bleService.Device.ConnectionStatus.ToString());
Debug.WriteLine("E");
Debug.WriteLine(GattCharacteristic.ConvertShortIdToUuid(0xFFE1).ToString());
// TODO: Throws exception if not paired before startup because pairing info is not stored on device
accConfig = bleService.GetCharacteristics(GattCharacteristic.ConvertShortIdToUuid(0xFFE1))[0];
Debug.WriteLine("F");
}
return deviceList;
}
sendMessage()函数
public async void sendMessage(string messageToSend)
{
// TODO: implement
await accConfig.WriteValueAsync((Encoding.UTF8.GetBytes(messageToSend)).AsBuffer());
Debug.WriteLine("G");
}
错误
在await accConfig系列中,我得到一个例外:
An exception of type 'System.Exception' occurred in mscorlib.ni.dll but was not handled in user code
Additional information: [...] (Exception from HRESULT: 0x80070572)
另一件事是,在“设置”选项卡上,我的蓝牙设备始终从“已连接”切换为“已配对”。我不知道是什么原因造成的。
更新2017/04/23 设备代码和信息
我在Arduino上包含了代码。我使用原始HM-10,on this page顶部的第一个版本。我没有品牌(因此它没有Keyes标识)但除此之外它不应该有任何区别。 (虽然它可能是一个克隆,但我对它的了解尽可能多)。
#include <SoftwareSerial.h>
SoftwareSerial bluetooth(9, 10); // RX, TX
char commandbuffer[50];
int j = 0;
void setup()
{
memset(commandbuffer, 0, sizeof(commandbuffer));
analogWrite(12, 255);
analogWrite(11, 0);
// Start the hardware serial port
Serial.begin(19200);
bluetooth.begin(9600);
// un REM this to set up a Master and connect to a Slave
Serial.println("BLE CC41A Bluetooth");
Serial.println("----------------------------------");
Serial.println("");
Serial.println("Trying to connect to Slave Bluetooth");
delay(1000);
bluetooth.print("AT"); // just a check
delay(2000);
delay(2000);
bluetooth.print("AT+ROLE0");
delay(2000);
/*
bluetooth.println("AT+HELP");
delay(2000);
bluetooth.println("AT+CONA0xE4F89CF8AB87");*/
/*bluetooth.println("AT+CONE4F89CF8AB87");
delay(2000);*/
// discover
/*
bluetooth.println("AT+INQ"); // look for nearby Slave
delay(5000);
bluetooth.println("AT+CONN1"); // connect to it */
}
void loop()
{
bluetooth.listen();
// while there is data coming in, read it
// and send to the hardware serial port:
while (bluetooth.available() > 0) {
char inByte = bluetooth.read();
Serial.write(inByte);
}
// Read user input if available.
if (Serial.available()) {
delay(10); // The DELAY!
char temp = Serial.read();
if (temp == '\n')
{
bluetooth.print(commandbuffer);
Serial.print('\n'); // Because it needs it even if Bluetooth received command happened earlier
Serial.println(commandbuffer);
memset(commandbuffer, 0, sizeof(commandbuffer));
j = 0; // Reset
}
else
{
commandbuffer[j++] = temp;
}
delay(500);
}
}
答案 0 :(得分:0)
如果配对信息未存储在设备上,则总会发生这种情况。每次重新连接时,您必须取消配对并重新配对,因为在Windows 10上,您的设备已配对,但您的设备未配对。