- rebuild your code within Simulink, as Simulink can generate for Arduino target
- use MATLAB Coder, marking all of the interesting parts as external, and write those yourself. That is, there is no support for generating code for writeDigital for example.
- whatever you can put together based on the custom code libraries discussed at https://www.mathworks.com/help/supportpkg/arduinoio/custom-arduino-libraries.html
MATLAB Support Package for Arduino Hardware, does it compile the code or just send and recieve data?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Saeed
le 11 Fév 2017
Réponse apportée : Walter Roberson
le 11 Fév 2017
Hi
I am trying to code an Arduino to do some stuff for me. For example I write this simple code:
a = arduino('com3', 'uno');
for i = 1:10
writeDigitalPin(a, 'D13', 0);
pause(0.5);
writeDigitalPin(a, 'D13', 1);
pause(0.5);
end
It works fine, but as soon as I disconnect it from PC and connect it to a electricity power source, it does not do the commands again, which means that the code is not recorded on the micro controller chipset and only transfers the command to the Arduino to do the work. In this case, the process is done by the CPU of the PC. This is obvious also because the TX and RX LEDs on the Arduino blink each time there is a new command passing the connection cable.
So, is there a way to compile the code and use it on the micro-controller?
Thanks
Saeed
0 commentaires
Réponse acceptée
Walter Roberson
le 11 Fév 2017
You have a few choices:
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Arduino Hardware dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!