Last active
July 11, 2017 20:19
-
-
Save ikizoglu/6069cb51c2b727e89a37ff1944cf80e9 to your computer and use it in GitHub Desktop.
Arduino ile Led Yakma
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); //Burada 13 numaralı pini çıkış olarak alıyoruz. | |
| } | |
| void loop() //Döngüyü baslatıyoruz. | |
| { | |
| digitalWrite(13, HIGH); //Bu komut ledi yakar | |
| // Eğer led yandıktan 1sn sonra söndürmek isterseniz delay(1000); kodunu eklemeniz yeterli. | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment