查找串行设备的COM端口
本文关键字:COM 端口 查找 | 更新日期: 2023-09-27 18:18:29
我有一个Windows c#应用程序。该应用程序通过串行端口连接到RFID读卡器。虽然我已经给它COM端口3默认情况下。我着陆的情况下,用户的端口是不可用的,他正在使用的端口是他的windows操作系统不同的东西。
我的应用程序确实让用户能够更改COM端口,但是要找到他们的操作系统正在使用哪个COM端口,用户需要转到设备管理器并检查,这对于新手来说可能不太舒服。
是否有一种功能或方法可以准确地找到我的RFID卡在Windows中连接到的端口,以便我可以简单地显示如下:
应用端口设置为:COM ....操作系统设备连接端口:COM ....
我的目标框架是3.5
编辑1:
尝试使用SerialPort.GetPortNames(),但它返回一个空字符串:System.String[]..
我的RFID设备列在设备管理器===>端口(COM &LPT)作为Silicon Labs CP210x USB到UART桥(COM3)
嗨@user3828453如果你仍然有一个空端口,那么你可以使用正确的端口号返回,而不是要求用户进入设备管理器并通过你的接口更新端口。
private static string GetRFIDComPort()
{
string portName = "";
for ( int i = 1; i <= 20; i++ )
{
try
{
using ( SerialPort port = new SerialPort( string.Format( "COM{0}", i ) ) )
{
// Try to Open the port
port.Open();
// Ensure that you're communicating with the correct device (Some logic to test that it's your device)
// Close the port
port.Close();
}
}
catch ( Exception ex )
{
Console.WriteLine( ex.Message );
}
}
return portName;
}
using System;
using System.Threading.Tasks;
namespace XYZ{
public class Program
{
public static void Main(string[] args)
{
Task<string> t = Task.Run( () =>
{
return FindPort.GetPort(10);
});
t.Wait();
if(t.Result == null)
Console.WriteLine($"Unable To Find Port");
else
Console.WriteLine($"[DONE] Port => {t.Result} Received");
// Console.ReadLine();
}
}
}
using System;
using System.IO.Ports;
public static class FindPort
{
public static string GetPort(int retryCount)
{
string portString = null;
int count = 0;
while( (portString = FindPort.GetPortString() ) == null) {
System.Threading.Thread.Sleep(1000);
if(count > retryCount) break;
count++;
}
return portString;
}
static string GetPortString()
{
SerialPort currentPort = null;
string[] portList = SerialPort.GetPortNames();
foreach (string port in portList)
{
// Console.WriteLine($"Trying Port {port}");
if (port != "COM1")
{
try
{
currentPort = new SerialPort(port, 115200);
if (!currentPort.IsOpen)
{
currentPort.ReadTimeout = 2000;
currentPort.WriteTimeout = 2000;
currentPort.Open();
// Console.WriteLine($"Opened Port {port}");
currentPort.Write("connect");
string received = currentPort.ReadLine();
if(received.Contains("Hub"))
{
// Console.WriteLine($"Opened Port {port} and received {received}");
currentPort.Write("close");
currentPort.Close();
return port;
}
}
}
catch (Exception e)
{
//Do nothing
Console.WriteLine(e.Message);
if(currentPort.IsOpen)
{
currentPort.Write("close");
currentPort.Close();
}
}
}
}
// Console.WriteLine($"Unable To Find Port => PortLength : {portList.Length}");
return null;
}
}