Last active
August 29, 2015 14:28
-
-
Save michaelsarduino/70066b0e3a8c22ae89d4 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
| void setup() { | |
| pinMode(13, OUTPUT); | |
| unsigned long zeit_bei_beginn = millis(); | |
| unsigned long zeit_aktualisiert = millis(); | |
| while((zeit_bei_beginn + 10000) > zeit_aktualisiert) | |
| { | |
| digitalWrite(13, HIGH); | |
| delay(100); | |
| digitalWrite(13, LOW); | |
| delay(100); | |
| zeit_aktualisiert = millis(); | |
| } | |
| } | |
| void loop() { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment