Created
July 12, 2014 01:27
-
-
Save jpomykala/f5eb6a6b3530bf4e432c to your computer and use it in GitHub Desktop.
Zamiast 8 funkcji, mamy jedną, bardziej uniwersalną :)
This file contains 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 dioda(int a, int b) | |
{ | |
digitalWrite(a, LOW); | |
digitalWrite(b, HIGH); | |
delay(400); | |
digitalWrite(b, HIGH); | |
digitalWrite(a, LOW); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment