-->
Notification texts go here Contact Us pelacakan

DIY 3D Printed RGB LED Alphabet Letters

 DIY 3D Printed RGB LED Alphabet Letters


Hey friends in this video I will show you how to make 3D Printed RGB LED Alphabet Word Sign Board.


3D Printing Files:

https://www.thingiverse.com/thing:4643190


Materials:

Arduino nano

WS2812B NEOPIXEL LED

3D Printed Parts


Circuit:


Code arduino:


#include <FastLED.h>


 #define NUM_LEDS 20

 #define LED_PIN 2


 CRGB leds[NUM_LEDS];


 uint8_t startHue = 0;

 uint8_t deltaHue = 0;


 void setup() {

  FastLED.addLeds<WS2812B, LED_PIN, GRB>(leds, NUM_LEDS);

  FastLED.setBrightness(50);

  delay(2000);

 }


 void loop () {


  fill_rainbow (leds, NUM_LEDS, startHue, deltaHue);

  FastLED.show();

  delay(50);

  startHue++;

  deltaHue++

 }


Post a Comment

Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.