I know how to write code on matlab but I'm very beginner for raspberry pi 3. I want to write a code on matlab and run on raspberry pi. I wrote this code and will try on raspberry pi. I tried this code via connection raspberry pi to my matlab(laptop) and it worked. Will it work on raspberry pi without matlab?
mypi = raspi();
for k = 1:10;
writeLED(mypi,'led0',1)
pause(0.5)
writeLED(mypi,'led0',0)
pause(0.5)
end
How can I do? Is there any special code that I must write in my code? and I need to use deploytool command