Last active
August 29, 2015 13:56
-
-
Save raziyeaydin/8830245 to your computer and use it in GitHub Desktop.
LED yakmak
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
int led = 13; | |
void setup() { | |
pinMode(led, OUTPUT); //Program ilk çalıştırıldığında led olarak tanımladığımız 13. pin çıkış pini olarak ayarlandı. | |
} | |
void loop() { | |
digitalWrite(led, HIGH); //Işığın yanmasını sağlıyor. | |
delay(1000); //Gecikme süresi | |
digitalWrite(led, LOW); //Işığın sönük kalmasını sağlıyor. | |
delay(500); //Gecikme süresi | |
} | |
// 1 saniye boyunca yanıp yarım saniye sönük kalan led yakma kodu... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment