Hi I use this code for getting available com ports from computer with C#
string ports = SerialPort.GetPortNames();
foreach (string port in ports)
{
comboBox1.Items.Add(port);
}
My question is that How can I get only Arduino port because I get all ports and I take exception on my desktop program. I want to take only arduino ports.