Skip to content

Instantly share code, notes, and snippets.

@misternay
Last active October 23, 2017 10:13
Show Gist options
  • Save misternay/8abcc8a28625f6f9f2844f66f3cfcf04 to your computer and use it in GitHub Desktop.
Save misternay/8abcc8a28625f6f9f2844f66f3cfcf04 to your computer and use it in GitHub Desktop.
String name = "";
void setup() {
Serial.begin(9600);
}
void loop() {
getText();
if (name != "") {
Serial.println("HEllo: " + name);
name = "";
}
}
void getText() {
while (Serial.available()) {
name = Serial.readString();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment