Created
October 5, 2016 01:16
-
-
Save openopen114/6c65024a2745a50003d1ef6032fed5ce 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 number = 0 ; | |
void setup(){ | |
Serial.begin(9600); | |
} | |
void loop(){ | |
Serial.println(number); | |
number = number + 1; | |
delay(3000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment