Last active
March 14, 2019 15:47
-
-
Save EspaceRaspberryFrancais/7655e87bdc4ae35ac2b80a94d0040b8f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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