Skip to content

Instantly share code, notes, and snippets.

@esmarr58
Created February 13, 2018 04:12
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 esmarr58/ada4828bae4380013d5bd713f1ab577a to your computer and use it in GitHub Desktop.
Save esmarr58/ada4828bae4380013d5bd713f1ab577a to your computer and use it in GitHub Desktop.
int contador = 0;
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.print("Cuenta: ");
Serial.println(contador);
contador++;
delay(1000); //Retardo de 1 segundo
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment