Skip to content

Instantly share code, notes, and snippets.

@miquelbeltran
Last active June 11, 2017 07:05
Show Gist options
  • Select an option

  • Save miquelbeltran/360fd3c4f91abd37ba3238bfda86872d to your computer and use it in GitHub Desktop.

Select an option

Save miquelbeltran/360fd3c4f91abd37ba3238bfda86872d to your computer and use it in GitHub Desktop.
if (Serial.available() > 0) {
char command = (char) Serial.read();
switch (command) {
case 'H':
Serial.write("Hello World");
break;
}
Serial.flush();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment