Skip to content

Instantly share code, notes, and snippets.

@ikizoglu
Created September 19, 2017 08:56
Show Gist options
  • Select an option

  • Save ikizoglu/70a27faae7672b13e4cb1ad1a30582f1 to your computer and use it in GitHub Desktop.

Select an option

Save ikizoglu/70a27faae7672b13e4cb1ad1a30582f1 to your computer and use it in GitHub Desktop.
Arduino Slide Switch Kullanımı
// ************************
// ** 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