var selector = SerialDevice.GetDeviceSelector("COM14");
var informations = await DeviceInformation.FindAllAsync(selector);
if (informations.Any())
{
var port = await SerialDevice.FromIdAsync(informations.First().Id);
}
informations.Any() is false
Where is my error?
I haven't tried it on UWP, but there is a Windows quirk when accessing COM ports of 10 or greater: you need to specify the full symbolic device name from user mode. I.e., prepend a
\\.\
: