Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Difference in sending data from Arduino and Matlab?

조회 수: 1 (최근 30일)
Berke Ogulcan Parlak
Berke Ogulcan Parlak 2020년 6월 3일
마감: MATLAB Answer Bot 2021년 8월 20일
There is a code in the Arduino that transmits three values received respectively. I am sending these three values from Arduino in the following order:
As you can see, I sent the values 1234, 500 and 8900 respectively, and the code transmitted this in the same order.But when I try to send these values from matlab in the same way:
s = serial('COM7','Baudrate',9600);
fopen(s);
kp = '1234\\\\';
ki = '500\\\\\';
kd = '8900\\\\';
fwrite(s,kp);
fwrite(s,ki);
fwrite(s,kd);
for i = 1:8
a = fscanf(s)
b = fscanf(s)
c = fscanf(s)
end
fclose(s);
This is the output of the code:
Can you help me fix the Matlab code?

답변 (0개)

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by