MATLAB abd Arduino UNO serial comm.(LED blinking)

Versione 1.0.0.0 (159 Byte) da MATuino R
LED connected to pin 13 of arduino uno will be controlled using serial communication from MATLAB .
1,5K download
Aggiornato 31 lug 2014

Visualizza la licenza

A serial communication is established between arduino uno and MATLAB and the LED on pin 13 of arduino uno can be toggled using number '100' and '101'. Before executing this .m-file ,make sure the following code below is uploaded on arduino UNO:
Note: Make sure the COM port number is correctly entered in MATLAB program

const int ledpin=13;
int recValue;

void setup()
{
Serial.begin(9600);
pinMode(13, OUTPUT);
}

void loop()
{
if(Serial.available()>0)
{
recValue=Serial.read();

if (recValue == 100) // If use will send value 100 from MATLAB then LED will turn ON
{
digitalWrite(ledpin, HIGH);
}
if(recValue == 101) // If use will send value 101 from MATLAB then LED will turn OFF
{
digitalWrite(ledpin, LOW);
}
}
}

Cita come

MATuino R (2025). MATLAB abd Arduino UNO serial comm.(LED blinking) (https://it.mathworks.com/matlabcentral/fileexchange/47418-matlab-abd-arduino-uno-serial-comm-led-blinking), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2013a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0