Intent: Trying to create a PC Bluetooth application to talk to STM32 BlueNRG module. I'm trying to use the following nugit packages for bluetooth:
using Windows.Devices.Bluetooth;
using Windows.Devices.Enumeration;
I added the system.runtime.windowsruntime
to packages and windows.winMD
to references. I've been following a youtube tutorial.
Once I have the above steps performed. I dont have any build errors. My code compiles and I still get the following errors.
System.NotImplementedException
HResult=0x80004001
Message=The member DeviceWatcher DeviceInformation.CreateWatcher(string aqsFilter, IEnumerable<string> additionalProperties, DeviceInformationKind kind) is not implemented in Uno.
Source=Uno
StackTrace:
at Windows.Devices.Enumeration.DeviceInformation.CreateWatcher(String aqsFilter, IEnumerable`1 additionalProperties, DeviceInformationKind kind)
My code: