Skip to content

Instantly share code, notes, and snippets.

@techzeero
Created February 22, 2020 19:28
Show Gist options
  • Save techzeero/fc1610195f38a13c922dd0ac03ae39c1 to your computer and use it in GitHub Desktop.
Save techzeero/fc1610195f38a13c922dd0ac03ae39c1 to your computer and use it in GitHub Desktop.
/*
Arduino String Functionality
For more details, visit: https://techzeero.com/arduino-tutorials/arduino-string-functionality/
*/
void setup() {
char my_str[] = "Hello";
Serial.begin(9600);
Serial.println(my_str);
}
void loop() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment