Problem in interfacing the MATLAB R2015a and Arduino Uno

1 view (last 30 days)
Hi, I installed arduino hardware support packages using MATLAB 'Support Package Installer'. i am trying to dump the following code (From MATLAB R2015a) to arduino uno board.
a = arduino();
for i = 1:10
writeDigitalPin(a, 'D13', 0);
pause(0.5);
writeDigitalPin(a, 'D13', 1);
pause(0.5);
end
But, i am getting the below error.
*Specified map file does not exist:
C:\Program Files\MATLAB\R2015a\help\supportpkg\arduinoio\arduinoio.map*
Thank you in advance..

Answers (0)

Community Treasure Hunt

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

Start Hunting!