question about write to serial
8 ビュー (過去 30 日間)
古いコメントを表示

I want to write this string to the serial, but the signal is wrong. How to wirte this code? Thank you!!!
4 件のコメント
Walter Roberson
2024 年 11 月 5 日
When you are measuring the wire signal levels of RS232, then the Start and Stop bits are unavoidable.
Side note: the Start bit is a different length than the Stop bit. I seem to recall that the Stop bit is half of the length of other bits.
回答 (1 件)
Supraja
2024 年 11 月 11 日
Hi,
It seems like sending deimal values inside the function would help in this case.
Please use the code as below:
write(app.SerialObject, [85, 86, 87, 88], "uint8"); % Decimal equivalents of binary numbers
Refer to 'write' function documentation below for further reference:
I hope this helps!
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!