Skip to content

Instantly share code, notes, and snippets.

@EspaceRaspberryFrancais
Last active March 14, 2019 15:47
Show Gist options
  • Select an option

  • Save EspaceRaspberryFrancais/7655e87bdc4ae35ac2b80a94d0040b8f to your computer and use it in GitHub Desktop.

Select an option

Save EspaceRaspberryFrancais/7655e87bdc4ae35ac2b80a94d0040b8f to your computer and use it in GitHub Desktop.
int i=0;
void setup() {
Serial.begin(9600);
Serial.println("Un message va etre envoye toutes les deux secondes des maintenant !");
}
void loop() {
Serial.println("Message #" + String(i));
delay(2000);
i++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment