arduino yürüyen işık

  1. guclusat

    Arduino Yürüyen Işık Uygulaması

    int timer = 50; int sayi = 6; int pins[] = { 2, 3, 4, 5, 6, 7 }; void setup() { int i; for (i = 0; i < sayi; i++) pinMode(pins[i], OUTPUT); } void loop() { int i; for (i = 0; i < sayi; i++) { digitalWrite(pins[i], HIGH)...
Geri
Yukarı