Arama Sonuçları - Sorgulanan Kelime: *

  1. Code cleaner

    Çözüldü Bu koda fade efekti ekleyebilir misiniz?

    Basaracagiz insallah hocam. Guzel duracagina eminim.
  2. Code cleaner

    Çözüldü Bu koda fade efekti ekleyebilir misiniz?

    Fade; #include <RGB_LED.h> RGB_LED LED(9,10,11); void setup() { LED.setFunction(Fade); } void loop() { LED.run(); } Two Leds; #include <RGB_LED.h> RGB_LED LED1(9,10,11); RGB_LED LED2(3,4,5); void setup() { LED1.setFunction(Fade); LED2.setFunction(Step); } void loop() {...
  3. Code cleaner

    Çözüldü Bu koda fade efekti ekleyebilir misiniz?

    int led = 3; // the pin that the LED is attached to int brightness = 0; // how bright the LED is int fadeAmount = 5; // how many points to fade the LED by // the setup routine runs once when you press reset: void setup() { // declare pin 3 to be an output: pinMode(led, OUTPUT); } // the...
  4. Code cleaner

    Çözüldü Bu koda fade efekti ekleyebilir misiniz?

    Hocam yanlis okumusum. Siz yavas renk gecisi istiyormussunuz. Ama bulmussunuz sanirim. Kolay gelsin.
  5. Code cleaner

    Çözüldü Bu koda fade efekti ekleyebilir misiniz?

    int red_light_pin= 11; int green_light_pin = 10; int blue_light_pin = 9; void setup() { pinMode(red_light_pin, OUTPUT); pinMode(green_light_pin, OUTPUT); pinMode(blue_light_pin, OUTPUT); } void loop() { RGB_color(255, 0, 0); // Red delay(1000); RGB_color(0, 255, 0); // Green...
Geri
Yukarı