Skip to content

Instantly share code, notes, and snippets.

@giljr
Created May 10, 2017 22:20
Show Gist options
  • Save giljr/47ddf6984bf3e6256a00c551e57b4aa4 to your computer and use it in GitHub Desktop.
Save giljr/47ddf6984bf3e6256a00c551e57b4aa4 to your computer and use it in GitHub Desktop.
//////////////////////////////////////////////////////////////////////////////////
// REMIXED BY: TECHBITAR (HAZIM BITAR)
// LICENSE: PUBLIC DOMAIN
// DATE: MAY 2, 2012
// CONTACT: techbitar at gmail dot com
int counter = 0;
void setup() {
Serial.begin(9600);
delay(50);
}
void loop() {
counter++;
Serial.print(“Arduino counter: “);
Serial.println(counter);
delay(500); // wait half a sec
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment