Skip to content

Instantly share code, notes, and snippets.

@openopen114
Created October 5, 2016 01:16
Show Gist options
  • Save openopen114/6c65024a2745a50003d1ef6032fed5ce to your computer and use it in GitHub Desktop.
Save openopen114/6c65024a2745a50003d1ef6032fed5ce to your computer and use it in GitHub Desktop.
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