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