How to read COM port caption

7 visualizaciones (últimos 30 días)
Parth-Raj Singh
Parth-Raj Singh el 1 de Mzo. de 2019
Comentada: Parth-Raj Singh el 7 de Feb. de 2022
I want to connect a device with multiple COM ports at different baud rate. However, every time I change HW or USB port, the COM port changes and I have to look into the device manager and then change COM ports in my script to make it work. However, I noticed that in the device manager the COM ports have captions which don't change with COM port number. I would like to know how can I automatically select the COM ports based on their captions.

Respuesta aceptada

Abhishek Singh
Abhishek Singh el 5 de Mzo. de 2019
Hello Parth,
It is not possible to address the COM ports with the captions.
However as a work-around for this problem, before your actual code on your devices, you could continuously publish a particular value.
Simulink can search for these values across all COM ports and assign the COM ports accordingly.
For example, if you have an Arduino Uno and an Arduino Mega, you could publish '1' continuously from the Uno and '2' continuously from the Mega.
Simulink can sniff through all COM ports and look for a '1' or a '2', and assign the COM port to the device

Más respuestas (2)

Madhu Govindarajan
Madhu Govindarajan el 5 de Mzo. de 2019
seriallist command is used to detect additions to the COM port #s (only available starting R2017a). However in this technique you are assuming that no other COM port devices gets added at the time of addition and you know the order in which you are adding the devices in. If these two can be guaranteed, then seriallist command output can be saved as a variable and see how it is changing and assign COM ports to appropriate devices based on the order.

Parth-Raj Singh
Parth-Raj Singh el 21 de Mzo. de 2019
I found a solution using Python. Please find below the script:
function scpInfo=getSCPInfo
scpInfo=struct();
if isempty(seriallist)
error('SCP:InvalidSCP','No Serial Communication Port Detected.');
else
scpLis=py.serial.tools.list_ports.comports();
scpLisLen=size(scpLis,2);
if scpLisLen>0
scpInfo=repmat(struct(),[scpLisLen,1]);
for scpi=1:scpLisLen
fnSCP=sort(fieldnames(scpLis{scpi}));
for fnscpi=1:length(fnSCP)
scpInfo(scpi).(fnSCP{fnscpi})=char(scpLis{scpi}.(fnSCP{fnscpi}));
end
end
end
end
To run the above script, Python should be installed with pyserial package (pip install pyserial) and python location should be registered in the environment variable setting so that MATLAB can find it.
  2 comentarios
chrisw23
chrisw23 el 4 de Feb. de 2022
Editada: chrisw23 el 7 de Feb. de 2022
asm = NET.addAssembly("System.Management");
mngmtQuery = System.Management.ObjectQuery();
mngmtQuery.QueryString = "SELECT * FROM Win32_PnPEntity WHERE Name LIKE '%(COM%'";
mngmtSearcher = System.Management.ManagementObjectSearcher(mngmtQuery);
mngmtObjColl = mngmtSearcher.Get();
comRep = repmat("",mngmtObjColl.Count,2);
enMngmtObjColl = mngmtObjColl.GetEnumerator;
i = 0;
while enMngmtObjColl.MoveNext()
i = i + 1;
com = enMngmtObjColl.Current;
caption = com.GetPropertyValue("Caption");
comRep(i,1) = string(caption).extract("COM" + digitsPattern);
comRep(i,2) = string(com.GetPropertyValue("Description"));
end
disp(comRep)
...works for me
Best regards
Christian
Parth-Raj Singh
Parth-Raj Singh el 7 de Feb. de 2022
Thanks @chrisw23, it works for me as well and seems like a better solution.
BR,
Parth

Iniciar sesión para comentar.

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by