This is a Windows 10 IoT Core project on the Raspberry Pi 2/3, coded by C#.
GitHub: https://github.com/ZhangGaoxing/windows-iot-demo/tree/master/IRTM
Image Referencehttps://github.com/ZhangGaoxing/windows-iot-demo/tree/master/IRTM/Reference
ConnectRXD - UART0 TX (PIN 8)
TXD - UART0 RX (PIN 10)
VCC - 5V
GND - GND
NoteThere is one Serial UART available on the RPi2/3: UART0
Pin 8 - UART0 TX
Pin 10 - UART0 RX
You need add the following capability to the Package.appxmanifest file to use Serial UART.
<Capabilities> <DeviceCapability Name="serialcommunication"> <Device Id="any"> <Function Type="name:serialPort" /> </Device> </DeviceCapability> </Capabilities>