Arduino - Matlab

조회 수: 8 (최근 30일)
Tee
Tee 2011년 3월 21일
답변: Shamnad 2014년 10월 31일
currently i use IO package for Matlab, i can light on LED by using digitalWrite function, but now i wan try to blink the LED but don't know how to do it, can someone help me?

채택된 답변

Kaustubha Govind
Kaustubha Govind 2011년 3월 21일
You can check the elapsed time and toggle the output written to the LED every few seconds.
(It is not clear whether you are using the Simulink Arduino target, or something else here. If this answer doesn't help, please provide more information)
  댓글 수: 2
Tee
Tee 2011년 3월 24일
i didnt use simulink arduino target, just using IO packages, is possible i blink the LED without using it?
Kaustubha Govind
Kaustubha Govind 2011년 3월 24일
I'm not familiar with the IO package - does it let you read the clock on the Arduino? If yes, you can continuously poll the clock time and toggle every few seconds (maybe take the modulus of the time, and toggle the output value when it reaches a certain value).

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Shamnad
Shamnad 2014년 10월 31일
It's not that hard. Check out the below code if you're using MATLAB Support for Arduino (aka ArduinoIO Package)
% code
% ArduinoIO code for Blinking LED
% Connect to Arduino
MyArduino = arduino('COM1');
% Specify Pin Mode
MyArduino.pinMode(13, 'output');
for i = 1:10
% LED on
MyArduino.digitalWrite(13,1);
% Delay for LED on time
pause(.5);
% LED off
MyArduino.digitalWrite(13,0);
% Delay for LED off time
pause(.5);
end
% Close session
delete(MyArduino);
Or else, if you're using MATLAB Support Package for Arduino Hardware Try the below code. Hope this helps.
% code
% Arduino MATLAB Support Package code for Blinking LED
% Connect to Arduino
MyArduino = arduino('COM1', 'UNO');
for i = 1:10
% LED on
writeDigitalPin(MyArduino,13,1);
% Delay for LED on time
pause(.5);
% LED off
writeDigitalPin(MyArduino,13,0);
% Delay for LED off time
pause(.5);
end
clear MyArduino;

카테고리

Help CenterFile Exchange에서 MATLAB Support Package for Arduino Hardware에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by