How to read COM port caption
조회 수: 4 (최근 30일)
이전 댓글 표시
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.
댓글 수: 0
채택된 답변
Abhishek Singh
2019년 3월 5일
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
댓글 수: 0
추가 답변 (2개)
Madhu Govindarajan
2019년 3월 5일
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.
댓글 수: 0
Parth-Raj Singh
2019년 3월 21일
댓글 수: 2
chrisw23
2022년 2월 4일
편집: chrisw23
2022년 2월 7일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Use COM Objects in MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!