Sound measurements and electronic relays

1 Ansicht (letzte 30 Tage)
Yisroel Rosenberg
Yisroel Rosenberg am 22 Nov. 2020
Hi i want to make a clap on and off light using an arduino board and writing code in MATLAB. while its fairly simple in Arduino im not sure how to write and include a relay in matlab. if someone can help me write this i would appreciate it.

Antworten (1)

Pankhuri Kasliwal
Pankhuri Kasliwal am 25 Nov. 2020
Hello,
You will need to setup Hardware Support Package for MATLAB.
You can do so in Environment > Add-Ons > Get Hardware Support Packages > MATLAB Support Package for Arduino Hardware.
After installing the support package for MATLAB, we need to check if it has been installed properly or not. You can do so by connecting Arduino to your system and typing the following command in MATLAB command window. If connected successfully, MATLAB will then display the properties of the Arduino board connected to your system.
a = arduino()
Code for controlling LEDs using MATLAB and Arduino is as follows :
%create an object of arduino
a = arduino()
%blinking led for 5 secs
for i=1:5
writeDigitalPin(a,'D10',1);
pause(0.5);
wrteDigitalPin(a,'D10',0);
pause(0.5);
end
clear a

Kategorien

Mehr zu Arduino Hardware 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