top of page
Arduino ile buton kontrolü
Gerekli malzemeler:
-
Arduino UNO
-
LED
-
Jumper Kablo
-
Direnç - 1K
-
Buton
Devre Şeması
Arduino Kodu:
const int buttonPin = 5;
const int ledPin = 8;
int buttonState = 0;
void setup() {
pinMode(ledPin, OUTPUT);
pinMode(buttonPin, INPUT);
}
void loop(){
buttonState = digitalRead(buttonPin);
if (buttonState == HIGH) {
digitalWrite(ledPin, HIGH);
}
else {
digitalWrite(ledPin, LOW);
}
}
bottom of page