1 2 3 4 5 6 7 8 9 10 11 12 13 | void setup() { pinMode(4, INPUT); // 4 numaralı dijital pin giriş pinMode(5, OUTPUT); // 5 numaralı dijital pin çıkış } void loop() { bool buton = digitalRead(4); // 4 numaralı girişi oku ve buton değişkenine aktar if (!buton) { // BURAYA DİKKAT (BAŞTAKİ ÜNLEM İŞARETİ) eğer butona basılı değilse digitalWrite(5, HIGH); // 5 numaralı dijital çıkışı 1 yap } else { // eğer butona basılı ise digitalWrite(5, LOW); // 5 numaralı dijital çıkışı 0 yap } } |
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?