Skip to content

Instantly share code, notes, and snippets.

@K4CZP3R
Created September 4, 2019 07:57
Show Gist options
  • Save K4CZP3R/4b54c3855f1dcb2ee67677bcf34fecbf to your computer and use it in GitHub Desktop.
Save K4CZP3R/4b54c3855f1dcb2ee67677bcf34fecbf to your computer and use it in GitHub Desktop.
fontys_tech_challenge_5_1_1.ino
int count = 0;
void setup(){
Serial.begin(9600);
}
void loop(){
count += 1;
Serial.println(count);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment