Quantcast
Channel: USB communication from C#
Browsing latest articles
Browse All 9 View Live

USB communication from C#

I know this is a late hit, but for the sake of others... This answer works ONLY if the device shows up in SerialPort.GetAllPorts() otherwise you can not communicate using the SerialPort class.When you...

View Article



USB communication from C#

Tan,Thank you again for sending me in this direction.   The code below functions, and is something that I can work with as I try to figure out how to make it more robust.   But this is a great start...

View Article

USB communication from C#

Tan,Thanks.  I love the simplicity of this solution, but it doesn't work for me and I don't have enough depth to see where I am going wrong.I have double checked with the terminal app, the data is...

View Article

USB communication from C#

Thanks.  I will try the above.I have figured out that I don't need to know a single thing about USB, HID, etc.  (Phew).  I just went with Serial Comms (System.IO.Ports), except that I can't get stuff...

View Article

USB communication from C#

Users need to install a driver for both devices. Then, it is just a simple serial port for you.using System.IO.Ports; SerialPort sp = new SerialPort("COM4", 115200); sp.Write(writebytes, 0,...

View Article


USB communication from C#

If you're using a USB to serial adapter then you won't need libusb as all your work will be through the SerialPort class.

View Article

USB communication from C#

Thank you.STAMP has a UART interface, I will see if this gets me anywhere.I have also discovered (thanks to this messageboard) a bunch of C# code with LibUsbDotNet.  Their sample application has found...

View Article

USB communication from C#

You can use a SerialPort to communicate with the Prolific USB to serial converter.See here for more information and an...

View Article


USB communication from C#

Hello, I am relatively new to programming in .net, and with C#.I have a prolific USB-RS232 (UID 067B, PID 2303) and a Parallax STAMP II device which I would like to communicate with.I cannot for the...

View Article

Browsing latest articles
Browse All 9 View Live




Latest Images