连接到 BLE 外设 Windows 10
Connect to BLE peripheral Windows 10
是否可以根据 Windows 10 和 read/write GATT 特性连接到我的自定义 BLE 外围设备(它实现了非标准 services/characteristics)?有哪些可用技术 - Windows 10 SDK、Xamarin?
是的。您可以使用标准 Windows API 以获得 read/write GATT 特性。您可以在 Win32 API (https://msdn.microsoft.com/en-us/library/windows/hardware/hh450825(v=vs.85).aspx) and the newer Windows RT APIs (https://msdn.microsoft.com/en-us/library/windows/apps/windows.devices.bluetooth.genericattributeprofile.aspx) 中进行选择,它们主要是 Win32 API 的包装器。
我知道的唯一要求是您的自定义 BLE 外围设备必须实现配对功能("Just Works" 或 "Passkey Entry")。
是否可以根据 Windows 10 和 read/write GATT 特性连接到我的自定义 BLE 外围设备(它实现了非标准 services/characteristics)?有哪些可用技术 - Windows 10 SDK、Xamarin?
是的。您可以使用标准 Windows API 以获得 read/write GATT 特性。您可以在 Win32 API (https://msdn.microsoft.com/en-us/library/windows/hardware/hh450825(v=vs.85).aspx) and the newer Windows RT APIs (https://msdn.microsoft.com/en-us/library/windows/apps/windows.devices.bluetooth.genericattributeprofile.aspx) 中进行选择,它们主要是 Win32 API 的包装器。
我知道的唯一要求是您的自定义 BLE 外围设备必须实现配对功能("Just Works" 或 "Passkey Entry")。