-
-
Save GiovanniBalestrieri/57caae80bf7f171f4ffd to your computer and use it in GitHub Desktop.
Snippet - Saving CSV data from Arduino to Matlab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void serialRoutine() | |
{ | |
if(Serial.available()>0) | |
{ | |
char t = Serial.read(); | |
if (t =='T') | |
{ | |
Serial.println("Ok"); | |
} | |
else if (t== 'M') | |
{ | |
printCSVomega(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment