LED Christmas tree WS2812 - first test

Поділитися
Вставка
  • Опубліковано 15 жов 2024
  • DIY WS2812 LED Christmas tree powered by a Teensy 3.5 board
    hackaday.io/pr...
    Inspired by • DIY xmas tree WS2812 R...

КОМЕНТАРІ • 10

  • @RyanJardina
    @RyanJardina 2 роки тому

    Very simple, but very nice too

  • @henriebillz785
    @henriebillz785 7 місяців тому

    Can you please share the schematic

    • @makeTVee
      @makeTVee  6 місяців тому

      Oh, the schematic is not really existing, I just connected the rings in series and the first ring to a microcontroller to drive the LEDs. Just regular Neopixel/WS2812B rings.

  • @designer2k2
    @designer2k2 7 років тому

    wow, awesome tree! would love to get this running light effect also for my one, will you share the code?

    • @makeTVee
      @makeTVee  7 років тому +1

      Thanks! I am using the FastLED lib, so this running light is:
      static uint8_t hue = 0;
      for(int i = 0; i < NUM_LEDS; i++)
      {
      leds[i] = CHSV(hue++, 255, 255);
      FastLED.show();
      fadeall();
      delay(10);
      }
      void fadeall() { for(int i = 0; i < NUM_LEDS; i++) { leds[i].nscale8(250); } }

    • @InboundG
      @InboundG 3 роки тому

      @@makeTVee that code is cool but an easier way to make the fading tail is fadeToBlackBy(); obviously it takes some arguments but it works really well

  • @blueocean7064
    @blueocean7064 3 роки тому +1

    Hello,... thank you for sharing this project.
    I've downloaded the file but there is no RingBuffer.h in the zip file.
    Can you upload it or give a link where to download this file ?
    Thank you.

    • @makeTVee
      @makeTVee  3 роки тому +1

      Hi, it is a lib, which you can install in Arduino studio: www.arduino.cc/reference/en/libraries/ringbuffer/

    • @ClaudeDufourmont
      @ClaudeDufourmont 3 роки тому

      Coming soon the links

  • @ClaudeDufourmont
    @ClaudeDufourmont 3 роки тому

    Very nice (claude dufourmont)