Serial port is not working

6 Ansichten (letzte 30 Tage)
Stijn Haenen
Stijn Haenen am 30 Sep. 2020
Beantwortet: Stijn Haenen am 30 Sep. 2020
Hello,
I am working with the USB-RLY82 from robot-electronics.co.uk
I have connected this device to the computer and it is available on COM3. But when i make a serial and open the port, it is not responding. I have a C++ program to control the device and this program works, so the device is not broken. But i want to control the device via matlab. How can i fix the serial?
this script is used to open the serial:
s=serial('COM3');
fopen(s);
fprintf(s,'100');
  2 Kommentare
Ameer Hamza
Ameer Hamza am 30 Sep. 2020
Have you configured the baud rate? Default rate is 9600.
Stijn Haenen
Stijn Haenen am 30 Sep. 2020
yes i tried many different baud rates, but without any result

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Stijn Haenen
Stijn Haenen am 30 Sep. 2020
Oh i solved my own problem, i should use int8 commands:
fwrite(s, [hex2dec('64')], 'int8');

Weitere Antworten (0)

Kategorien

Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by