Skip to content

Instantly share code, notes, and snippets.

@lfzawacki
Created September 30, 2011 03:37
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 lfzawacki/1252580 to your computer and use it in GitHub Desktop.
Save lfzawacki/1252580 to your computer and use it in GitHub Desktop.
Send ASCII Sketch
void setup()
{
Serial.begin(9600);
pinMode(13, INPUT);
}
void loop()
{
if (digitalRead(13) == HIGH)
Serial.println("Grande sucesso");
delay(100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment