簡體   English   中英

如何連接藍牙低功耗設備

[英]How to connect to the bluetooth low energy device

我正在為 Win 8 平板電腦編寫程序。 我需要連接外部 BLE 設備。 該設備已與 Windows 配對,我可以在設備管理器中看到它。 但我不知道如何連接它。

使用SetupDiEnumDeviceInfoSetupDiGetDeviceProperty我可以獲得有關 BLE 設備的一些信息,但要執行,例如BluetoothGATTGetServices Handle 設備需要。 我不知道該去哪里。 也許我可以使用CreateFile ,但不清楚將替代作為第一個參數 lpFileName。

這是我正在尋找我的設備的一段代碼。

HDEVINFO hDevInfo;
   SP_DEVINFO_DATA DeviceInfoData;
   DWORD i;

   // Create a HDEVINFO with all present devices.
   hDevInfo = SetupDiGetClassDevs(
        &BluetoothClassGUID,                     /* GUID_DEVCLASS_BLUETOOTH */
        0, 0, DIGCF_PRESENT);

   if (hDevInfo == INVALID_HANDLE_VALUE)
   {
       // Insert error handling here.
       return ;//1;
   }

   // Enumerate through all devices in Set.

   DeviceInfoData.cbSize = sizeof(SP_DEVINFO_DATA);
   for (i=0;SetupDiEnumDeviceInfo(hDevInfo,i,
       &DeviceInfoData);i++)
   {
       DWORD DataT;
       LPTSTR buffer = NULL;
       DWORD buffersize = 0;

       while (!SetupDiGetDeviceRegistryProperty(
               hDevInfo,
               &DeviceInfoData,
               SPDRP_FRIENDLYNAME,
               &DataT,
               (PBYTE)buffer,
               buffersize,
               &buffersize))
       {
           if (GetLastError() == ERROR_INSUFFICIENT_BUFFER){
               // Change the buffer size.
               if (buffer) delete(buffer);
               // Double the size to avoid problems on
               // W2k MBCS systems per KB 888609.
               buffer = new wchar_t[buffersize * 2];
           }else{
               // Insert error handling here.
               break;
           }
       }
                   /* Here i just compare by name is this my device or not */
                   ...
                   /* Here i just compare by name is this my device or not */
        if (buffer) delete(buffer);
   }


   if ( GetLastError()!=NO_ERROR &&
        GetLastError()!=ERROR_NO_MORE_ITEMS )
   {
       // Insert error handling here.
       return; //1;
   }

   //  Cleanup
   SetupDiDestroyDeviceInfoList(hDevInfo);

   return;// 0;

我移動了一點,但我仍然無法從設備中獲取數據。

  1. 要獲得“設備接口路徑”,必須使用其他函數: SetupDiGetClassDevsSetupDiEnumDeviceInterfacesSetupDiGetDeviceInterfaceDetail

  2. 接下來,使用CreateFile我得到 HANDLE BLE-device。

    hComm = CreateFile(pInterfaceDetailData->DevicePath, GENERIC_WRITE | GENERIC_READ,NULL,0,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL, NULL);

  3. 接下來使用 WinAPI BluetoothGATTGetServicesBluetoothGATTGetCharacteristics我得到了適當的結構。

但是當嘗試使用BluetoothGATTGetCharacteristicsValue獲取屬性值時,我得到ERROR_ACCESS_DENIED

然后我不知道該怎么辦。 有什么問題?

安德烈,我認為問題在於您的設備未連接並且BluetoothGATTGetCharacteristicsValue未觸發連接。

嘗試使用 Windows 工具手動連接您的設備。 我有以下對我有幫助的流程:取消配對設備,配對設備->它應該顯示為已連接(它在我的情況下有效;))

無論如何,如果這沒有幫助,請嘗試運行“以管理員身份”運行,這在某些情況下會有所幫助。

祝你好運!!!

注意:想知道如何檢索 BTLE 設備的設備路徑以調用 BluetoothGATTGetServices?

gattServiceGUID 是您的設備支持的任何長格式 BLE UUID。

"{00001803-0000-1000-8000-00805F9B34FB"} can be used to open a handle to the Link Loss service if supported by the device you are trying to open

HDEVINFO hDevInfo = SetupDiGetClassDevs(&gattServiceGUID, NULL, NULL, DIGCF_PRESENT | DIGCF_DEVICEINTERFACE);

if (hDevInfo != INVALID_HANDLE_VALUE)
{
    SP_DEVICE_INTERFACE_DATA interfaceData;
    ZeroMemory(&interfaceData,sizeof(SP_DEVICE_INTERFACE_DATA));
    interfaceData.cbSize = sizeof(SP_DEVICE_INTERFACE_DATA);

    for (DWORD dwDeviceIndex = 0; SetupDiEnumDeviceInterfaces(hDevInfo, NULL, &gattServiceGUID, dwDeviceIndex, &interfaceData); dwDeviceIndex++)
    {                       
        dwDeviceCount++;
        SetupDiGetDeviceInterfaceDetail(hDevInfo, &interfaceData, NULL, 0, &dwBytesNeeded, NULL);
        if (::GetLastError() == ERROR_INSUFFICIENT_BUFFER)
        {
            pInterfaceDetail = (PSP_INTERFACE_DEVICE_DETAIL_DATA) new byte[dwBytesNeeded];

            SP_DEVINFO_DATA spDeviceInfoData = { sizeof(SP_DEVINFO_DATA) };

            ZeroMemory(pInterfaceDetail, sizeof(SP_INTERFACE_DEVICE_DETAIL_DATA));
            pInterfaceDetail->cbSize = sizeof(SP_INTERFACE_DEVICE_DETAIL_DATA);

            //  grab the interface detail
            if (SetupDiGetDeviceInterfaceDetail(hDevInfo, &interfaceData, pInterfaceDetail, dwBytesNeeded, NULL, &spDeviceInfoData) == TRUE)
            {
                //  request a handle to the GATT service path
                m_hGattServiceHandle = CreateFile(pInterfaceDetail->DevicePath, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, FILE_FLAG_OVERLAPPED, NULL);
                if (m_hGattServiceHandle != INVALID_HANDLE_VALUE)
                {
                    now you can drill down the characteristics and descriptors with the m_hGattServiceHandle 
                }
            }
        }
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM