Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个项目,我必须与两个通过 COM over USB 提供数据的不同设备进行交互。客户告诉我,这可以通过超级终端轻松完成,但我不熟悉它。我正在使用 .NET 2.0 进行编码(但如有必要,可以使用 3.5)。
从这些硬件设备获取数据的最简单/最快的方法是什么?有控制吗?图书馆?还有什么,那是标准的吗?
你想要System.IO.Ports.SerialPort。然后,您可以使用 Read()、ReadLine() 等从第 3 方硬件读取数据。