Created
September 19, 2017 08:56
-
-
Save ikizoglu/70a27faae7672b13e4cb1ad1a30582f1 to your computer and use it in GitHub Desktop.
Arduino Slide Switch Kullanımı
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
| // ************************ | |
| // ** Kemal İKİZOĞLU ** | |
| // ************************ | |
| void setup() { | |
| pinMode(4, OUTPUT); | |
| pinMode(10, INPUT); | |
| } | |
| void loop() { | |
| if(digitalRead(10)) digitalWrite(4, HIGH); | |
| if(digitalRead(10)) digitalWrite(4, LOW); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment