UART Port Names

List All UART Ports string AqsFilter = SerialDevice.GetDeviceSelector(); var dis = await DeviceInformation.FindAllAsync(AqsFilter); for (Count = 0; Count < dis.Count; Count++) System.Diagnostics.Debug.WriteLine("UART Port: " + dis[Count].Name + “, ” + dis[Count].Id); Connect To A specific UART Port string AqsFilter = SerialDevice.GetDeviceSelector(); var dis = await DeviceInformation.FindAllAsync(AqsFilter); for (Count = 0; Count < dis.Count; Count++) { […]

Read More

RPi Using The UART

Hardware UART and USB UART Adapters Both are usable Enabling The UART For Your Application At the time of writing in Visual Studio the UART isn't an option in Package.appxmanifest > Capabilities and it has to be enabled for you app manually: Right click the Package.appxmanifest file > Open with… > XML (Text) Editor Add the […]

Read More