Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a project where I have to interact with two different devices that supply data via COM over USB. The client is telling me that this can be done easily with HyperTerminal but I am unfamiliar with it. I am coding with .NET 2.0 (but can use 3.5 if necessary).

What would be the easiest/quickest way to obtain the data from these hardware devices? Is there a control? Library? Something else, that is standard?

share|improve this question

1 Answer

up vote 4 down vote accepted

You want System.IO.Ports.SerialPort. You can then use Read(), ReadLine(), etc. to read data from the 3rd party hardware.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.