Created
September 4, 2019 07:57
-
-
Save K4CZP3R/4b54c3855f1dcb2ee67677bcf34fecbf to your computer and use it in GitHub Desktop.
fontys_tech_challenge_5_1_1.ino
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 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