Button Led Interact on Base
//rukked...
//btn_led_etkilesimi_pull_down devresidir.
#define Buton 8
#define Led 10
int buton_durumu = 0;
void setup() {
pinMode(Buton, INPUT);
pinMode(Led, OUTPUT);
}
void loop() {
buton_durumu=digitalRead(Buton);
if(buton_durumu==1){digitalWrite(Led, HIGH);}
else {digitalWrite(Led, LOW);}
}
0 comments:
Yorum Gönder