How to display "serial device connected" or "not connected"?
13 ビュー (過去 30 日間)
古いコメントを表示
Sohail Ahmed
2021 年 11 月 22 日
コメント済み: Sébastien Josset
2022 年 12 月 22 日
I am interfacing a spectral sensor with PC and getting the data through MATLAB (serial port functions).
I want to add a conditional statement to check whether the device is connected / not connected before getting serial data.
conditional statement ??
spectral3 = serialport('COM4','BaudRate',115200);
2 件のコメント
Sébastien Josset
2022 年 12 月 22 日
Hi Ahmed, hi All,
I strongly suppose you're using the same sensor as I would like to: AS7265x Triad Spectroscopy Sensor (datasheet: AS7265x (sparkfun.com)).
It works well with me using a software serial with an Arduino nano, but I would like to use it directly in the Matlab environment through UART communication (datasheet page 41), but it requires to modify the sensor. Before I do that, I would like to know if you managed to use the sensor this way, and if yes, if you could be so kind and share your code to collect the responses at the 18 different wavelebgths?
Kind Regards
Sebastien
採用された回答
Walter Roberson
2021 年 11 月 30 日
serialportlist('available') can tell you whether the port of interest is "available"
serialport() objects appear to try to open the port as soon as you invoke serialport() . They do not have a connection status because serialport() fails if it is not able to open the port. The port stays open until you clear the serialport() object.
This is different than the older serial() objects, which had a specific fopen() and the properties could be examined to see if the serial() object was open.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!