COM over USB with .NET for interfacing with third party hardware

I have a project where I need to communicate with two different devices that supply data via COM over USB. The client tells me that it can be done easily with HyperTerminal, but I am not familiar with it. I am coding .NET 2.0 (but can use 3.5 if needed).

What would be the easiest / fastest way to get data from these hardware devices? Is there control? Library? Anything else that's standard?

0


source to share


1 answer


You want System.IO.Ports.SerialPort . Then you can use Read (), ReadLine (), etc. For reading data from third-party equipment.



+4


source







All Articles