Я создаю кроссплатформенное приложение для взаимодействия с устройством Bluetooth LE.Приложение работает на Android и iOS, но не может подключиться к Windows.Когда я звоню pairAsync()
, на некоторое время всплывает окно «Соединение», затем меняется на «Соединение не удалось».Возвращенное состояние: 19, DevicePairingResultStatus.Failed
, «Произошла неизвестная ошибка».согласно документации MS .
Я использую cordova-plugin-bluetoothle для обработки межплатформенных различий.Я пробовал на нескольких компьютерах со встроенным и USB-адаптером Bluetooth.
Код подключения:
connect: function (successCallback, errorCallback, params) {
if (!initialized) {
errorCallback({ error: "connect", message: "Not initialized." });
return;
}
var address = params && params[0] && params[0].address;
if (!address) {
errorCallback({ error: "connect", message: "Device address is not specified" });
return;
}
var DeviceInformation = Windows.Devices.Enumeration.DeviceInformation;
var DeviceInformationKind = Windows.Devices.Enumeration.DeviceInformationKind;
WinJS.Promise.wrap(address)
.then(function (deviceAddress) {
// If we have cached device info return it right now
if (WATCH_CACHE[deviceAddress]) return [WATCH_CACHE[deviceAddress]];
// Otherwise try to search it again
var selector = "System.Devices.Aep.ProtocolId:=\"{bb7bb05e-5972-42b5-94fc-76eaa7084d49}\" AND " +
"System.Devices.Aep.ContainerId:=\"{" + deviceAddress + "}\" AND " +
"(System.Devices.Aep.CanPair:=System.StructuredQueryType.Boolean#True OR " +
"System.Devices.Aep.IsPaired:=System.StructuredQueryType.Boolean#True)";
return DeviceInformation.findAllAsync(selector, ["System.Devices.Aep.ContainerId"], DeviceInformationKind.associationEndpoint);
})
.then(function (devices) {
return Windows.Devices.Bluetooth.BluetoothLEDevice.fromIdAsync(devices[0].id);
})
.then(function (bleDevice) {
var DevicePairingProtectionLevel = Windows.Devices.Enumeration.DevicePairingProtectionLevel;
var DevicePairingResultStatus = Windows.Devices.Enumeration.DevicePairingResultStatus;
var DevicePairingKinds = Windows.Devices.Enumeration.DevicePairingKinds;
if (bleDevice.deviceInformation.pairing.isPaired) {
return bleDevice;
}
if (!bleDevice.deviceInformation.pairing.canPair) {
throw { error: "connect", message: "The device does not support pairing" };
}
// TODO: investigate if it is possible to pair without user prompt
return bleDevice.deviceInformation.pairing.pairAsync(DevicePairingProtectionLevel.none)
.then(function (res) {
if (res.status === DevicePairingResultStatus.paired ||
res.status === DevicePairingResultStatus.alreadyPaired)
return bleDevice;
// I modified these two lines to return the actual error message instead of a generic rejection message
var msg = getDevicePairingResultStatusMessage(res.status);
throw { error: "connect", message: "(" + res.status + ") " + msg };
});
})
.done(function (bleDevice) {
var result = {
name: bleDevice.deviceInformation.name,
address: address,
status: "connected"
};
// Attach listener to device to report disconnected event
bleDevice.addEventListener('connectionstatuschanged', function connectionStatusListener(e) {
if (e.target.connectionStatus === Windows.Devices.Bluetooth.BluetoothConnectionStatus.disconnected) {
result.status = "disconnected";
successCallback(result);
bleDevice.removeEventListener('connectionstatuschanged', connectionStatusListener);
}
});
// Need to use keepCallback to be able to report "disconnect" event
// https://github.com/randdusing/cordova-plugin-bluetoothle#connect
successCallback(result, { keepCallback: true });
}, function (err) {
errorCallback(err);
});
}