All Projects → s-marley → Uno_vu_line

s-marley / Uno_vu_line

Licence: other
Arduino code for a stereo VU meter with lots of patterns

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to Uno vu line

ArduLED
Control NeoPixels (ws2812b) easier than ever with an Arduino!
Stars: ✭ 25 (-59.68%)
Mutual labels:  leds, ws2812b
HomeStatusDisplay
Show smart home status information sent via MQTT using RGB LEDs.
Stars: ✭ 21 (-66.13%)
Mutual labels:  leds, ws2812b
TinyPixelMapper
a Pixelmapping software for the ESP32 and ESP8266 for addressible LED Strips, with a OSC controll interface and FFT
Stars: ✭ 22 (-64.52%)
Mutual labels:  leds, ws2812b
Wordclock
Diy Wordclock with an esp32 and ws2812b Leds
Stars: ✭ 19 (-69.35%)
Mutual labels:  leds, ws2812b
awesome-ws2812
A curated list of awesome resources for ws2812 LED strips and matrices
Stars: ✭ 84 (+35.48%)
Mutual labels:  ws2812b
SuperGreenOS
🧠 SuperGreenOS home farming automation software for esp32, all in one package, and controllable from your smartphone, pc, mac, linux, toaster, plumbus, whatnot...
Stars: ✭ 83 (+33.87%)
Mutual labels:  leds
OctoWifi-LEDs-Controller
LEDs driver for ESP32 ( support ART-NET, RGB888, RGB565, Z888 )
Stars: ✭ 16 (-74.19%)
Mutual labels:  leds
Stranger Things Wall
A wall of addressable LEDs inspired by the Netflix series Stranger Things that displays messages from Twitter.
Stars: ✭ 22 (-64.52%)
Mutual labels:  leds
Sound-and-music-reactive-ESP8266-WS2812B
Refined Version of @scottlawsonbc and all schematics + Tutorial 🎵🎵
Stars: ✭ 35 (-43.55%)
Mutual labels:  ws2812b
ledcat
Control lots of LED's over lots of protocols
Stars: ✭ 89 (+43.55%)
Mutual labels:  ws2812b
PixelMaestro
Library for creating and rendering 2D animations and patterns.
Stars: ✭ 20 (-67.74%)
Mutual labels:  leds
sysfsled
C++ library for the linux kernel's LED device class
Stars: ✭ 15 (-75.81%)
Mutual labels:  leds
glow worm luciferin
Bias Lighting and Ambient Light firmware, designed for Firefly Luciferin.
Stars: ✭ 96 (+54.84%)
Mutual labels:  ws2812b
led-speech-edison
Speech-activated LEDs using Intel Edison, SparkFun blocks, Python, and CMU Sphinx
Stars: ✭ 25 (-59.68%)
Mutual labels:  leds
WOWPixelDriver
A hardware based animation library,pixel driver & dynamic led mapping system for addressable LEDs
Stars: ✭ 39 (-37.1%)
Mutual labels:  ws2812b
MusicVisualizer
A music visualizer based on the ATMEGA328P-AU
Stars: ✭ 30 (-51.61%)
Mutual labels:  ws2812b
pi pico neopixel
Pi Pico library for NeoPixel led-strip written in MicroPython. Works with ws2812b (RGB) and sk6812 (RGBW).
Stars: ✭ 70 (+12.9%)
Mutual labels:  leds
sparklemotion
Sparkle Motion
Stars: ✭ 24 (-61.29%)
Mutual labels:  leds
ESP8266 ArtNet-LED-DMX-Node
ESP8266 based WiFi ArtNet-Node for WS2812B-LED Pixel
Stars: ✭ 67 (+8.06%)
Mutual labels:  ws2812b
arcin-infinitas
arcin firmware for beatmania IIDX controllers - native support for Infinitas, LR2, beatoraja
Stars: ✭ 26 (-58.06%)
Mutual labels:  ws2812b

UnoVULine

Code written to run on the Arduino Nano or Uno to drive LED strips such as WS2812B as a stereo VU meter.

Features

  • 10 VU patterns that move in time to the music.
  • 7 standby patterns that move without audio input.
  • Press the button to change pattern, long press to automatically cycle through patterns.
  • Remembers the last pattern that you used when you power it off and returns to it on power on.
  • Supports 75 LEDs per channel (150 total) on Uno and Nano. Much more on Mega etc. If you need more LEDs, on something like a nano, see extra info below.
  • Completely open source and hackable. Create your own patterns or use it in whatever you like!

Demo

Click the image below

Youtube video of VU meter in action

Setting up the circuit

If you want to make this on your own, the schematic that I have used is:

Wiring schematic Building this on a breadboard is relatively simple, it could look something like this:

Breadboard image

Installation and code usage

  1. Download this repository and unzip it somewhere. You must rename the unzipped folder Uno_vu_line.
  2. Open the Arduino IDE then open Uno_vu_line.ino
  3. You will need the FastLED and JC_Button libraries installed. In the IDE, go to Tools -> Manage Libraries. Search for FastLED and install the latest version and do the same with JC_Button.
  4. On the Uno_vu_line.ino tab, find the line that says # define N_PIXELS and change the number after it to the number of LEDs you have in each string.
  5. Plug in the Arduino and upload the code in the usual way, ensuring that the correct board type and com port are selected in the Tools menu.

Extra info

  • The more LEDs you have, the more power you will need to provide. Make sure your power source is able to cope.
  • If you need to use longer strips and you are running out of RAM, you can reduce SAMPLES to something less than 60. The lower the number is, the the more flickery the VU will be, but you will be able to use more LEDs
  • If the controller seems to go weird, I've found a quick reflash of the code usually clears it up quickly.
  • This project is for entertainment purposes only and the output is not calibrated in any way.
  • Code is written to run on the Nano / Uno or equivalent. Using an AVR with more SRAM will result in being able to use more LEDs.

Code is based on demos from the FastLED library and code from Cinelights YouTube channel.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].