Raspberry Pi 3 - USB to Serial Communication in C# on Windows 10 IOT Core
NickName:Santosh Biradar Ask DateTime:2018-02-15T15:01:26

Raspberry Pi 3 - USB to Serial Communication in C# on Windows 10 IOT Core

I am trying to Connect a Weighing Balance Device which has RS232 Serial Communication Port. It Gets Detected in Windows 10 PC & I can connect to it by using USB to Serial Converter through my Laptop's USB Port & I Can send & Receive Data using .Net applications.

But the Same Doesn't get Detected when I connect the Device to a USB Port on Raspberry Pi 3. I am using the Sample UWP application available on Git Hub

https://github.com/Microsoft/Windows-iotcore-samples/blob/345ac29fc98b388ab1c15f2a655dcc63e13e1259/Samples/SerialUART/CS/README.md#serial-uart

I am using Windows 10 IOT Core 16299 Build on Raspberry Pi 3

Some of the Forums suggest to get the Serial to USB Driver on Pi 3, Is there any one who has the drivers? I am not able to find any Serial to USB Converter which supports Windows 10 IOT Core.

Copyright Notice:Content Author:「Santosh Biradar」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/48801535/raspberry-pi-3-usb-to-serial-communication-in-c-sharp-on-windows-10-iot-core

More about “Raspberry Pi 3 - USB to Serial Communication in C# on Windows 10 IOT Core” related questions

USB serial communication between ionic and raspberry PI 3

I want USB serial communication between ionic app and raspberry PI 3. I have searched a lot but as both are working as master, not getting any way for this implementation. Can anyone please help me...

Show Detail

USB Serial Communication slow on Raspberry Pi 3

I posted a similar question last week but there was something wrong in my code that I (think) I have fixed now. I have a device sending 80x80 16 bits images through USB (cdc-acm) at a framerate of...

Show Detail

Raspberry Pi 3 - USB to Serial Communication in C# on Windows 10 IOT Core

I am trying to Connect a Weighing Balance Device which has RS232 Serial Communication Port. It Gets Detected in Windows 10 PC & I can connect to it by using USB to Serial Converter through my L...

Show Detail

Raspberry Pi USB Serial Communication

I have a project consists of (micro controller RP2040 and Raspberry pi 4), the micro controller should send 2000 bytes every 10 millisecond to the raspberry pi over USB communication, and there is an

Show Detail

Serial communication with Raspberry pi

How can we do serial communication using the raspberry pi with a python script to send/receive data to my laptop? If yes can we use the RS232 cable to connect to the TX/RX ports on the raspberry pi

Show Detail

Serial communication over usb raspberry pi

How do I send information from a raspberry pi to an arduino over the USB port in c++? Optimally, I would want sending and receiving serial info to be as easy as Serial.println("food"); Temp = Serial.

Show Detail

Control the Raspberry PI on Serial Port communication

I am trying to control raspberry pi on serial port connection(UART), I can send data from raspberry (with some app for serial communication) with echo xyz > /dev/ttyAMA0; this works, also I can

Show Detail

Raspberry Pi to Arduino Communication

I am using an opencv algorithm on my Raspberry pi 3. I need to output the data from the raspberry pi to my Arduino. Presently I am using serial, where I simply plug in the arduino to the raspberry pi

Show Detail

Python Serial communication Arduino (Teensy) to Raspberry Pi

I have managed it to write from my arduino (Uno) to my Raspberry Pi 3 via Serial. If I use the same python script on the pi side, and the same Sketch on arduino side, but using a Teensy instead, I...

Show Detail

Arduino and raspberry pi communication via USB

I have a problem for communication between arduino and raspberry pi. Arduino code: char intput_arduino; int rand_value; void setup(){ Serial.begin(115200); } void loop(){ if(Serial.available(...

Show Detail