Introduction
Putting together a huge number of LEDs into an electronic project may seem tedious. Here at Little Bird Electronics, we have these TrinityPixel LED RGB strips. These are waterproof and flexible LED strips based on the popular and extremely compact WS2812B LED driver, integrated directly into a 5050 package.Â
In this guide, learn to connect it to the Raspberry Pi with a logic level converter chip, install the necessary libraries, and get started with programming it!
Complete this guide to start building bright and beautiful indoor or outdoor lighting, festive decorations, light-up gear, or even integrate it into your next home automation project.
In this guide, learn to connect it to the Raspberry Pi with a logic level converter chip, install the necessary libraries, and get started with programming it!
Complete this guide to start building bright and beautiful indoor or outdoor lighting, festive decorations, light-up gear, or even integrate it into your next home automation project.
Tools
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
import board import neopixel pixels = neopixel.NeoPixel(board.D18,4) pixels[0] = (255,0,0)
-
import board import neopixel pixels = neopixel.NeoPixel(board.D18,4) pixels.fill((0,255,0))
-
import board import neopixel from time import sleep LED_COUNT = 8 pixels = neopixel.NeoPixel(board.D18, LED_COUNT) for x in range(0,LED_COUNT): pixels[x] = (255,0,0) sleep(1)