Skip to content

Instantly share code, notes, and snippets.

@carlosdelfino
Created July 18, 2012 18:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlosdelfino/3137818 to your computer and use it in GitHub Desktop.
Save carlosdelfino/3137818 to your computer and use it in GitHub Desktop.
Generate a String to Maple
This is OK!!
This is OK!!
This is OK!!
This is OK!!
This is OK!!
This is OK!!
This is OK!!
This is OK!!
This is OK!!
This is OK!!
This is OK!!
This is OK!!
This is OK!!
This is OK!!
This is OK!!
This is OK!!
void setup(){
SerialUSB.begin();
}
void loop(){
char * mystr = strGenerator();
SerialUSB.println(mystr);
SerialUSB.println("This is OK!!");
}
char * strGenerator(){
char str[] = "This is Wrong!!";
return str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment