Skip to content

Latest commit

 

History

History
57 lines (34 loc) · 1.86 KB

README.md

File metadata and controls

57 lines (34 loc) · 1.86 KB

WS2812 LED Strip Animations

A very basic app to control WS2812 LED strips with a raspberry pi.

This consists of a Node app which serves a simple HTML page to manage the strip and includes libraries to control the strip.

You can use it for WS2812 (Neopixel) christmas lights, or other simple DIY applications.

Current Animations

  1. Rainbow
  • Cycle through all colors and pulse through strip.
  1. Fade 2 Colors
  • Choose 2 colors and fade the strip between them.
  1. Christmas Mode 1
  • Randomly cycle R / G / B / W through the strip.
  1. Christmas Mode 2
  • Iterate a segment of R / G / B / W LEDs through the strip from top to bottom and bottom to top

Important Reading

NPM package : https://www.npmjs.com/package/rpi-ws281x-native

Hardware

  • WS2812 (Neopixel) LED Light Strip or LEDs
  • Raspberry Pi 3 Model B, Raspberry Pi Zero, or Raspberry Pi Model B (other Raspberry Pis should work fine but are untested)
  • 5V 2A Power Supply
  • 1N4001 Diode (or equivalent) or a level converter. See https://learn.adafruit.com/neopixels-on-raspberry-pi/wiring

Connections

  1. Connect DATA IN of your WS2812 LED strip to physical pin 12 of the Raspberry Pi. (GPIO 18).
  2. Connect GND (Physical pin 6) to the GND lead of your power supply.

Notes

I currently have included the node modules directory in the repo. IMORTANT This will only work on a Raspberry Pi.

In future versions I will remove the node_modules folder and properly script the (3) packagaes.

Tested working on:

  1. Raspberry Pi 3 Model B
  2. Raspberry Pi Zero W (some slowness can occur)
  3. Raspberry Pi Model B (some slowness can occur)

Raspberry Pi Setup

see setupNotes for setup

forked from: https://github.com/luxdvie/WS2812Controller