├── FIRST VU METERS ├── Mega_Vu │ ├── Mega.vu.txt │ ├── Mega_Vu.ino │ ├── rgb.h │ ├── rgb_operators.h │ └── water_torture.h ├── Readme.md ├── Stereo_vu │ ├── Stereo_vu.ino │ ├── rgb.h │ ├── rgb_operators.h │ ├── stereo.vu.txt │ └── water_torture.h ├── Uno_vu │ ├── Uno_vu.ino │ └── uno.vu.txt └── please read.txt ├── Firelamp part2 - Sound Reactive ├── AudioLogic.h ├── AudioPatterns.h ├── Commands.h ├── Drawing.h ├── Effects.h ├── Fire2012WithPalette.h ├── GradientPalettes.h ├── LICENSE ├── Noise.h ├── Pulse.h ├── README.md ├── Torch.h ├── Torch2.h ├── Wave.h └── torch.ino ├── LCD Vu meter - clock ├── LiquidCrystal-master │ ├── README.adoc │ ├── examples │ │ ├── Autoscroll │ │ │ └── Autoscroll.ino │ │ ├── Blink │ │ │ └── Blink.ino │ │ ├── Cursor │ │ │ └── Cursor.ino │ │ ├── CustomCharacter │ │ │ └── CustomCharacter.ino │ │ ├── Display │ │ │ └── Display.ino │ │ ├── HelloWorld │ │ │ └── HelloWorld.ino │ │ ├── Scroll │ │ │ └── Scroll.ino │ │ ├── SerialDisplay │ │ │ └── SerialDisplay.ino │ │ ├── TextDirection │ │ │ └── TextDirection.ino │ │ └── setCursor │ │ │ └── setCursor.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── LiquidCrystal.cpp │ │ └── LiquidCrystal.h └── vumeterclock │ ├── DS3231 │ ├── DS3231.cpp │ ├── DS3231.h │ ├── DS3231RTC.cpp │ ├── DS3231RTC.h │ ├── Documentation │ │ ├── DS3231.pdf │ │ └── version.txt │ ├── License │ │ ├── License - CC BY-NC-SA 3.0 - Legal.pdf │ │ └── License - CC BY-NC-SA 3.0 - Summary.pdf │ ├── config.h │ ├── examples │ │ ├── Arduino │ │ │ ├── DS3231_Serial_Easy │ │ │ │ └── DS3231_Serial_Easy.ino │ │ │ ├── DS3231_Serial_Hard │ │ │ │ └── DS3231_Serial_Hard.ino │ │ │ ├── DS3231_Temperature │ │ │ │ └── DS3231_Temperature.ino │ │ │ └── DS3231_UnixTime │ │ │ │ └── DS3231_UnixTime.ino │ │ └── chipKit │ │ │ ├── DS3231_Serial_Easy │ │ │ └── DS3231_Serial_Easy.pde │ │ │ ├── DS3231_Serial_Hard │ │ │ └── DS3231_Serial_Hard.pde │ │ │ ├── DS3231_Temperature │ │ │ └── DS3231_Temperature.pde │ │ │ └── DS3231_UnixTime │ │ │ └── DS3231_UnixTime.pde │ ├── hardware │ │ ├── arm │ │ │ ├── HW_ARM.h │ │ │ └── HW_ARM_defines.h │ │ ├── avr │ │ │ ├── HW_AVR.h │ │ │ └── HW_AVR_defines.h │ │ └── pic32 │ │ │ ├── HW_PIC32.h │ │ │ └── HW_PIC32_defines.h │ └── keywords.txt │ ├── Fix_fft │ ├── examples │ │ └── Test │ │ │ └── Test.ino │ ├── fix_fft.cpp │ └── fix_fft.h │ ├── PERSON.jpg │ ├── SET TIME.jpg │ ├── clock.jpg │ ├── connections.jpg │ ├── headphone.jpg │ ├── lcdvumeter │ └── lcdvumeter.ino │ ├── switch.jpg │ └── switch2.jpg ├── README.md ├── StereoVuv4 ├── Readme.md ├── StereoVuv4.ino ├── rgb.h ├── rgb_operators.h └── water_torture.h ├── Torch Lamp to Frame ├── AudioLogic.h ├── AudioPatterns.h ├── Commands.h ├── Drawing.h ├── Effects.h ├── Fire2012WithPalette.h ├── Fire2013WithPalette.h ├── GradientPalettes.h ├── LICENSE ├── Noise.h ├── Pulse.h ├── README.md ├── Readme.md ├── Torch.h ├── Torch2.h ├── Wave.h └── torchframe.ino ├── UNO VU-Meter and Patterns Only 9-15-18 ├── Patterns │ ├── Libraries │ │ ├── Adafruit_NeoPixel │ │ │ ├── Adafruit_NeoPixel.cpp │ │ │ ├── Adafruit_NeoPixel.h │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── WS2812_Definitions.h │ │ │ ├── examples │ │ │ │ ├── buttoncycler │ │ │ │ │ └── buttoncycler.ino │ │ │ │ ├── simple │ │ │ │ │ └── simple.ino │ │ │ │ └── strandtest │ │ │ │ │ └── strandtest.ino │ │ │ └── keywords.txt │ │ └── FastLED │ │ │ ├── .gitignore │ │ │ ├── FastLED.cpp │ │ │ ├── FastLED.h │ │ │ ├── LICENSE │ │ │ ├── PORTING.md │ │ │ ├── README.md │ │ │ ├── bitswap.cpp │ │ │ ├── bitswap.h │ │ │ ├── chipsets.h │ │ │ ├── color.h │ │ │ ├── colorpalettes.cpp │ │ │ ├── colorpalettes.h │ │ │ ├── colorutils.cpp │ │ │ ├── colorutils.h │ │ │ ├── controller.h │ │ │ ├── cpp_compat.h │ │ │ ├── dmx.h │ │ │ ├── docs │ │ │ ├── Doxyfile │ │ │ └── mainpage.dox │ │ │ ├── examples │ │ │ ├── AnalogOutput │ │ │ │ └── AnalogOutput.ino │ │ │ ├── Blink │ │ │ │ └── Blink.ino │ │ │ ├── ColorPalette │ │ │ │ └── ColorPalette.ino │ │ │ ├── ColorTemperature │ │ │ │ └── ColorTemperature.ino │ │ │ ├── Cylon │ │ │ │ └── Cylon.ino │ │ │ ├── DemoReel100 │ │ │ │ └── DemoReel100.ino │ │ │ ├── DemoReelESP32 │ │ │ │ └── DemoReelESP32.ino │ │ │ ├── Fire2012 │ │ │ │ └── Fire2012.ino │ │ │ ├── Fire2012WithPalette │ │ │ │ └── Fire2012WithPalette.ino │ │ │ ├── FirstLight │ │ │ │ └── FirstLight.ino │ │ │ ├── Multiple │ │ │ │ ├── ArrayOfLedArrays │ │ │ │ │ └── ArrayOfLedArrays.ino │ │ │ │ ├── MirroringSample │ │ │ │ │ └── MirroringSample.ino │ │ │ │ ├── MultiArrays │ │ │ │ │ └── MultiArrays.ino │ │ │ │ ├── MultipleStripsInOneArray │ │ │ │ │ └── MultipleStripsInOneArray.ino │ │ │ │ ├── OctoWS2811Demo │ │ │ │ │ └── OctoWS2811Demo.ino │ │ │ │ └── ParallelOutputDemo │ │ │ │ │ └── ParallelOutputDemo.ino │ │ │ ├── Noise │ │ │ │ └── Noise.ino │ │ │ ├── NoisePlayground │ │ │ │ └── NoisePlayground.ino │ │ │ ├── NoisePlusPalette │ │ │ │ └── NoisePlusPalette.ino │ │ │ ├── Pintest │ │ │ │ └── Pintest.ino │ │ │ ├── Ports │ │ │ │ └── PJRCSpectrumAnalyzer │ │ │ │ │ └── PJRCSpectrumAnalyzer.ino │ │ │ ├── RGBCalibrate │ │ │ │ └── RGBCalibrate.ino │ │ │ ├── RGBSetDemo │ │ │ │ └── RGBSetDemo.ino │ │ │ ├── SmartMatrix │ │ │ │ └── SmartMatrix.ino │ │ │ └── XYMatrix │ │ │ │ └── XYMatrix.ino │ │ │ ├── extras │ │ │ ├── AppleII.s65 │ │ │ ├── FastLED6502.s65 │ │ │ ├── RainbowDemo.bin.zip │ │ │ └── RainbowDemo.s65 │ │ │ ├── fastled_config.h │ │ │ ├── fastled_delay.h │ │ │ ├── fastled_progmem.h │ │ │ ├── fastpin.h │ │ │ ├── fastspi.h │ │ │ ├── fastspi_bitbang.h │ │ │ ├── fastspi_dma.h │ │ │ ├── fastspi_nop.h │ │ │ ├── fastspi_ref.h │ │ │ ├── fastspi_types.h │ │ │ ├── hsv2rgb.cpp │ │ │ ├── hsv2rgb.h │ │ │ ├── keywords.txt │ │ │ ├── led_sysdefs.h │ │ │ ├── lib8tion.cpp │ │ │ ├── lib8tion.h │ │ │ ├── lib8tion │ │ │ ├── math8.h │ │ │ ├── random8.h │ │ │ ├── scale8.h │ │ │ └── trig8.h │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ ├── noise.cpp │ │ │ ├── noise.h │ │ │ ├── pixelset.h │ │ │ ├── pixeltypes.h │ │ │ ├── platforms.h │ │ │ ├── platforms │ │ │ ├── arm │ │ │ │ ├── common │ │ │ │ │ └── m0clockless.h │ │ │ │ ├── d21 │ │ │ │ │ ├── clockless_arm_d21.h │ │ │ │ │ ├── fastled_arm_d21.h │ │ │ │ │ ├── fastpin_arm_d21.h │ │ │ │ │ └── led_sysdefs_arm_d21.h │ │ │ │ ├── k20 │ │ │ │ │ ├── clockless_arm_k20.h │ │ │ │ │ ├── clockless_block_arm_k20.h │ │ │ │ │ ├── fastled_arm_k20.h │ │ │ │ │ ├── fastpin_arm_k20.h │ │ │ │ │ ├── fastspi_arm_k20.h │ │ │ │ │ ├── led_sysdefs_arm_k20.h │ │ │ │ │ ├── octows2811_controller.h │ │ │ │ │ ├── smartmatrix_t3.h │ │ │ │ │ └── ws2812serial_controller.h │ │ │ │ ├── k66 │ │ │ │ │ ├── clockless_arm_k66.h │ │ │ │ │ ├── clockless_block_arm_k66.h │ │ │ │ │ ├── fastled_arm_k66.h │ │ │ │ │ ├── fastpin_arm_k66.h │ │ │ │ │ ├── fastspi_arm_k66.h │ │ │ │ │ └── led_sysdefs_arm_k66.h │ │ │ │ ├── kl26 │ │ │ │ │ ├── clockless_arm_kl26.h │ │ │ │ │ ├── fastled_arm_kl26.h │ │ │ │ │ ├── fastpin_arm_kl26.h │ │ │ │ │ ├── fastspi_arm_kl26.h │ │ │ │ │ └── led_sysdefs_arm_kl26.h │ │ │ │ ├── nrf51 │ │ │ │ │ ├── clockless_arm_nrf51.h │ │ │ │ │ ├── fastled_arm_nrf51.h │ │ │ │ │ ├── fastpin_arm_nrf51.h │ │ │ │ │ ├── fastspi_arm_nrf51.h │ │ │ │ │ └── led_sysdefs_arm_nrf51.h │ │ │ │ ├── sam │ │ │ │ │ ├── clockless_arm_sam.h │ │ │ │ │ ├── clockless_block_arm_sam.h │ │ │ │ │ ├── fastled_arm_sam.h │ │ │ │ │ ├── fastpin_arm_sam.h │ │ │ │ │ ├── fastspi_arm_sam.h │ │ │ │ │ └── led_sysdefs_arm_sam.h │ │ │ │ └── stm32 │ │ │ │ │ ├── clockless_arm_stm32.h │ │ │ │ │ ├── fastled_arm_stm32.h │ │ │ │ │ ├── fastpin_arm_stm32.h │ │ │ │ │ └── led_sysdefs_arm_stm32.h │ │ │ ├── avr │ │ │ │ ├── clockless_trinket.h │ │ │ │ ├── fastled_avr.h │ │ │ │ ├── fastpin_avr.h │ │ │ │ ├── fastspi_avr.h │ │ │ │ └── led_sysdefs_avr.h │ │ │ └── esp │ │ │ │ ├── 32 │ │ │ │ ├── clockless_block_esp32.h │ │ │ │ ├── clockless_esp32.h │ │ │ │ ├── fastled_esp32.h │ │ │ │ ├── fastpin_esp32.h │ │ │ │ └── led_sysdefs_esp32.h │ │ │ │ └── 8266 │ │ │ │ ├── clockless_block_esp8266.h │ │ │ │ ├── clockless_esp8266.h │ │ │ │ ├── fastled_esp8266.h │ │ │ │ ├── fastpin_esp8266.h │ │ │ │ └── led_sysdefs_esp8266.h │ │ │ ├── power_mgt.cpp │ │ │ ├── power_mgt.h │ │ │ ├── preview_changes.txt │ │ │ ├── release_notes.md │ │ │ └── wiring.cpp │ └── patterns2 │ │ ├── patterns2.ino │ │ ├── rgb.h │ │ ├── rgb_operators.h │ │ └── water_torture.h └── Uno_vumeter │ ├── Libraries │ ├── Adafruit_NeoPixel │ │ ├── Adafruit_NeoPixel.cpp │ │ ├── Adafruit_NeoPixel.h │ │ ├── COPYING │ │ ├── README.md │ │ ├── WS2812_Definitions.h │ │ ├── examples │ │ │ ├── buttoncycler │ │ │ │ └── buttoncycler.ino │ │ │ ├── simple │ │ │ │ └── simple.ino │ │ │ └── strandtest │ │ │ │ └── strandtest.ino │ │ └── keywords.txt │ └── FastLED │ │ ├── .gitignore │ │ ├── FastLED.cpp │ │ ├── FastLED.h │ │ ├── LICENSE │ │ ├── PORTING.md │ │ ├── README.md │ │ ├── bitswap.cpp │ │ ├── bitswap.h │ │ ├── chipsets.h │ │ ├── color.h │ │ ├── colorpalettes.cpp │ │ ├── colorpalettes.h │ │ ├── colorutils.cpp │ │ ├── colorutils.h │ │ ├── controller.h │ │ ├── cpp_compat.h │ │ ├── dmx.h │ │ ├── docs │ │ ├── Doxyfile │ │ └── mainpage.dox │ │ ├── examples │ │ ├── AnalogOutput │ │ │ └── AnalogOutput.ino │ │ ├── Blink │ │ │ └── Blink.ino │ │ ├── ColorPalette │ │ │ └── ColorPalette.ino │ │ ├── ColorTemperature │ │ │ └── ColorTemperature.ino │ │ ├── Cylon │ │ │ └── Cylon.ino │ │ ├── DemoReel100 │ │ │ └── DemoReel100.ino │ │ ├── DemoReelESP32 │ │ │ └── DemoReelESP32.ino │ │ ├── Fire2012 │ │ │ └── Fire2012.ino │ │ ├── Fire2012WithPalette │ │ │ └── Fire2012WithPalette.ino │ │ ├── FirstLight │ │ │ └── FirstLight.ino │ │ ├── Multiple │ │ │ ├── ArrayOfLedArrays │ │ │ │ └── ArrayOfLedArrays.ino │ │ │ ├── MirroringSample │ │ │ │ └── MirroringSample.ino │ │ │ ├── MultiArrays │ │ │ │ └── MultiArrays.ino │ │ │ ├── MultipleStripsInOneArray │ │ │ │ └── MultipleStripsInOneArray.ino │ │ │ ├── OctoWS2811Demo │ │ │ │ └── OctoWS2811Demo.ino │ │ │ └── ParallelOutputDemo │ │ │ │ └── ParallelOutputDemo.ino │ │ ├── Noise │ │ │ └── Noise.ino │ │ ├── NoisePlayground │ │ │ └── NoisePlayground.ino │ │ ├── NoisePlusPalette │ │ │ └── NoisePlusPalette.ino │ │ ├── Pintest │ │ │ └── Pintest.ino │ │ ├── Ports │ │ │ └── PJRCSpectrumAnalyzer │ │ │ │ └── PJRCSpectrumAnalyzer.ino │ │ ├── RGBCalibrate │ │ │ └── RGBCalibrate.ino │ │ ├── RGBSetDemo │ │ │ └── RGBSetDemo.ino │ │ ├── SmartMatrix │ │ │ └── SmartMatrix.ino │ │ └── XYMatrix │ │ │ └── XYMatrix.ino │ │ ├── extras │ │ ├── AppleII.s65 │ │ ├── FastLED6502.s65 │ │ ├── RainbowDemo.bin.zip │ │ └── RainbowDemo.s65 │ │ ├── fastled_config.h │ │ ├── fastled_delay.h │ │ ├── fastled_progmem.h │ │ ├── fastpin.h │ │ ├── fastspi.h │ │ ├── fastspi_bitbang.h │ │ ├── fastspi_dma.h │ │ ├── fastspi_nop.h │ │ ├── fastspi_ref.h │ │ ├── fastspi_types.h │ │ ├── hsv2rgb.cpp │ │ ├── hsv2rgb.h │ │ ├── keywords.txt │ │ ├── led_sysdefs.h │ │ ├── lib8tion.cpp │ │ ├── lib8tion.h │ │ ├── lib8tion │ │ ├── math8.h │ │ ├── random8.h │ │ ├── scale8.h │ │ └── trig8.h │ │ ├── library.json │ │ ├── library.properties │ │ ├── noise.cpp │ │ ├── noise.h │ │ ├── pixelset.h │ │ ├── pixeltypes.h │ │ ├── platforms.h │ │ ├── platforms │ │ ├── arm │ │ │ ├── common │ │ │ │ └── m0clockless.h │ │ │ ├── d21 │ │ │ │ ├── clockless_arm_d21.h │ │ │ │ ├── fastled_arm_d21.h │ │ │ │ ├── fastpin_arm_d21.h │ │ │ │ └── led_sysdefs_arm_d21.h │ │ │ ├── k20 │ │ │ │ ├── clockless_arm_k20.h │ │ │ │ ├── clockless_block_arm_k20.h │ │ │ │ ├── fastled_arm_k20.h │ │ │ │ ├── fastpin_arm_k20.h │ │ │ │ ├── fastspi_arm_k20.h │ │ │ │ ├── led_sysdefs_arm_k20.h │ │ │ │ ├── octows2811_controller.h │ │ │ │ ├── smartmatrix_t3.h │ │ │ │ └── ws2812serial_controller.h │ │ │ ├── k66 │ │ │ │ ├── clockless_arm_k66.h │ │ │ │ ├── clockless_block_arm_k66.h │ │ │ │ ├── fastled_arm_k66.h │ │ │ │ ├── fastpin_arm_k66.h │ │ │ │ ├── fastspi_arm_k66.h │ │ │ │ └── led_sysdefs_arm_k66.h │ │ │ ├── kl26 │ │ │ │ ├── clockless_arm_kl26.h │ │ │ │ ├── fastled_arm_kl26.h │ │ │ │ ├── fastpin_arm_kl26.h │ │ │ │ ├── fastspi_arm_kl26.h │ │ │ │ └── led_sysdefs_arm_kl26.h │ │ │ ├── nrf51 │ │ │ │ ├── clockless_arm_nrf51.h │ │ │ │ ├── fastled_arm_nrf51.h │ │ │ │ ├── fastpin_arm_nrf51.h │ │ │ │ ├── fastspi_arm_nrf51.h │ │ │ │ └── led_sysdefs_arm_nrf51.h │ │ │ ├── sam │ │ │ │ ├── clockless_arm_sam.h │ │ │ │ ├── clockless_block_arm_sam.h │ │ │ │ ├── fastled_arm_sam.h │ │ │ │ ├── fastpin_arm_sam.h │ │ │ │ ├── fastspi_arm_sam.h │ │ │ │ └── led_sysdefs_arm_sam.h │ │ │ └── stm32 │ │ │ │ ├── clockless_arm_stm32.h │ │ │ │ ├── fastled_arm_stm32.h │ │ │ │ ├── fastpin_arm_stm32.h │ │ │ │ └── led_sysdefs_arm_stm32.h │ │ ├── avr │ │ │ ├── clockless_trinket.h │ │ │ ├── fastled_avr.h │ │ │ ├── fastpin_avr.h │ │ │ ├── fastspi_avr.h │ │ │ └── led_sysdefs_avr.h │ │ └── esp │ │ │ ├── 32 │ │ │ ├── clockless_block_esp32.h │ │ │ ├── clockless_esp32.h │ │ │ ├── fastled_esp32.h │ │ │ ├── fastpin_esp32.h │ │ │ └── led_sysdefs_esp32.h │ │ │ └── 8266 │ │ │ ├── clockless_block_esp8266.h │ │ │ ├── clockless_esp8266.h │ │ │ ├── fastled_esp8266.h │ │ │ ├── fastpin_esp8266.h │ │ │ └── led_sysdefs_esp8266.h │ │ ├── power_mgt.cpp │ │ ├── power_mgt.h │ │ ├── preview_changes.txt │ │ ├── release_notes.md │ │ └── wiring.cpp │ └── justvu │ └── justvu.ino ├── Vu_Meter_FinalV2 ├── Readme.md ├── Vu_Meter_FinalV2.ino ├── rgb.h ├── rgb_operators.h └── water_torture.h ├── msgeq7 vu ├── Msgeq7_Vu │ ├── Msgeq7_Vu.ino │ ├── rgb.h │ ├── rgb_operators.h │ └── water_torture.h └── msgeq7 │ ├── Readme.md │ ├── VuMeter_tv.rar │ ├── examples │ ├── MSGEQ7_FastLED │ │ └── MSGEQ7_FastLED.ino │ ├── MSGEQ7_LED │ │ └── MSGEQ7_LED.ino │ ├── MSGEQ7_Serial │ │ └── MSGEQ7_Serial.ino │ └── MSGEQ7_Serial_Capture │ │ └── MSGEQ7_Serial_Capture.ino │ ├── extras │ ├── board │ │ ├── MSGEQ7.brd │ │ ├── MSGEQ7.sch │ │ ├── MSGEQ7_Gerber.zip │ │ ├── MSGEQ7_PCB.pdf │ │ ├── MSGEQ7_PCB.png │ │ ├── MSGEQ7_Schematic.pdf │ │ ├── MSGEQ7_Schematic.png │ │ ├── PCB_Bottom.PNG │ │ └── PCB_Top.PNG │ ├── breadboard │ │ ├── MSGEQ7_Breadboard.fzz │ │ ├── MSGEQ7_Breadboard.png │ │ └── MSGEQ7_Schematic.png │ └── pictures │ │ ├── audio_jacks.jpg │ │ ├── board.jpg │ │ └── pcb.jpg │ ├── header.png │ ├── keywords.txt │ ├── library.properties │ └── src │ ├── MSGEQ7.h │ └── MSGEQ7.hpp └── vu meter ring - update └── new_ring.ino /FIRST VU METERS/Mega_Vu/Mega.vu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/Mega_Vu/Mega.vu.txt -------------------------------------------------------------------------------- /FIRST VU METERS/Mega_Vu/Mega_Vu.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/Mega_Vu/Mega_Vu.ino -------------------------------------------------------------------------------- /FIRST VU METERS/Mega_Vu/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/Mega_Vu/rgb.h -------------------------------------------------------------------------------- /FIRST VU METERS/Mega_Vu/rgb_operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/Mega_Vu/rgb_operators.h -------------------------------------------------------------------------------- /FIRST VU METERS/Mega_Vu/water_torture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/Mega_Vu/water_torture.h -------------------------------------------------------------------------------- /FIRST VU METERS/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/Readme.md -------------------------------------------------------------------------------- /FIRST VU METERS/Stereo_vu/Stereo_vu.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/Stereo_vu/Stereo_vu.ino -------------------------------------------------------------------------------- /FIRST VU METERS/Stereo_vu/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/Stereo_vu/rgb.h -------------------------------------------------------------------------------- /FIRST VU METERS/Stereo_vu/rgb_operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/Stereo_vu/rgb_operators.h -------------------------------------------------------------------------------- /FIRST VU METERS/Stereo_vu/stereo.vu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/Stereo_vu/stereo.vu.txt -------------------------------------------------------------------------------- /FIRST VU METERS/Stereo_vu/water_torture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/Stereo_vu/water_torture.h -------------------------------------------------------------------------------- /FIRST VU METERS/Uno_vu/Uno_vu.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/Uno_vu/Uno_vu.ino -------------------------------------------------------------------------------- /FIRST VU METERS/Uno_vu/uno.vu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/Uno_vu/uno.vu.txt -------------------------------------------------------------------------------- /FIRST VU METERS/please read.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/FIRST VU METERS/please read.txt -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/AudioLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/AudioLogic.h -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/AudioPatterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/AudioPatterns.h -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/Commands.h -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/Drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/Drawing.h -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/Effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/Effects.h -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/Fire2012WithPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/Fire2012WithPalette.h -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/GradientPalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/GradientPalettes.h -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/LICENSE -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/Noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/Noise.h -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/Pulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/Pulse.h -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/README.md -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/Torch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/Torch.h -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/Torch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/Torch2.h -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/Wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/Wave.h -------------------------------------------------------------------------------- /Firelamp part2 - Sound Reactive/torch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Firelamp part2 - Sound Reactive/torch.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/README.adoc -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/examples/Autoscroll/Autoscroll.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/examples/Autoscroll/Autoscroll.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/examples/Cursor/Cursor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/examples/Cursor/Cursor.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/examples/CustomCharacter/CustomCharacter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/examples/CustomCharacter/CustomCharacter.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/examples/Display/Display.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/examples/Display/Display.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/examples/HelloWorld/HelloWorld.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/examples/HelloWorld/HelloWorld.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/examples/Scroll/Scroll.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/examples/Scroll/Scroll.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/examples/SerialDisplay/SerialDisplay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/examples/SerialDisplay/SerialDisplay.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/examples/TextDirection/TextDirection.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/examples/TextDirection/TextDirection.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/examples/setCursor/setCursor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/examples/setCursor/setCursor.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/keywords.txt -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/library.properties -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/src/LiquidCrystal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/src/LiquidCrystal.cpp -------------------------------------------------------------------------------- /LCD Vu meter - clock/LiquidCrystal-master/src/LiquidCrystal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/LiquidCrystal-master/src/LiquidCrystal.h -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/DS3231.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/DS3231.cpp -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/DS3231.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/DS3231.h -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/DS3231RTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/DS3231RTC.cpp -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/DS3231RTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/DS3231RTC.h -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/Documentation/DS3231.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/Documentation/DS3231.pdf -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/Documentation/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/Documentation/version.txt -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/License/License - CC BY-NC-SA 3.0 - Legal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/License/License - CC BY-NC-SA 3.0 - Legal.pdf -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/License/License - CC BY-NC-SA 3.0 - Summary.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/License/License - CC BY-NC-SA 3.0 - Summary.pdf -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/config.h -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/examples/Arduino/DS3231_Serial_Easy/DS3231_Serial_Easy.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/examples/Arduino/DS3231_Serial_Easy/DS3231_Serial_Easy.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/examples/Arduino/DS3231_Serial_Hard/DS3231_Serial_Hard.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/examples/Arduino/DS3231_Serial_Hard/DS3231_Serial_Hard.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/examples/Arduino/DS3231_Temperature/DS3231_Temperature.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/examples/Arduino/DS3231_Temperature/DS3231_Temperature.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/examples/Arduino/DS3231_UnixTime/DS3231_UnixTime.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/examples/Arduino/DS3231_UnixTime/DS3231_UnixTime.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/examples/chipKit/DS3231_Serial_Easy/DS3231_Serial_Easy.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/examples/chipKit/DS3231_Serial_Easy/DS3231_Serial_Easy.pde -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/examples/chipKit/DS3231_Serial_Hard/DS3231_Serial_Hard.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/examples/chipKit/DS3231_Serial_Hard/DS3231_Serial_Hard.pde -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/examples/chipKit/DS3231_Temperature/DS3231_Temperature.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/examples/chipKit/DS3231_Temperature/DS3231_Temperature.pde -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/examples/chipKit/DS3231_UnixTime/DS3231_UnixTime.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/examples/chipKit/DS3231_UnixTime/DS3231_UnixTime.pde -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/hardware/arm/HW_ARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/hardware/arm/HW_ARM.h -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/hardware/arm/HW_ARM_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/hardware/arm/HW_ARM_defines.h -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/hardware/avr/HW_AVR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/hardware/avr/HW_AVR.h -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/hardware/avr/HW_AVR_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/hardware/avr/HW_AVR_defines.h -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/hardware/pic32/HW_PIC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/hardware/pic32/HW_PIC32.h -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/hardware/pic32/HW_PIC32_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/hardware/pic32/HW_PIC32_defines.h -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/DS3231/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/DS3231/keywords.txt -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/Fix_fft/examples/Test/Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/Fix_fft/examples/Test/Test.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/Fix_fft/fix_fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/Fix_fft/fix_fft.cpp -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/Fix_fft/fix_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/Fix_fft/fix_fft.h -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/PERSON.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/PERSON.jpg -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/SET TIME.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/SET TIME.jpg -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/clock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/clock.jpg -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/connections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/connections.jpg -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/headphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/headphone.jpg -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/lcdvumeter/lcdvumeter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/lcdvumeter/lcdvumeter.ino -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/switch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/switch.jpg -------------------------------------------------------------------------------- /LCD Vu meter - clock/vumeterclock/switch2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/LCD Vu meter - clock/vumeterclock/switch2.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/README.md -------------------------------------------------------------------------------- /StereoVuv4/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/StereoVuv4/Readme.md -------------------------------------------------------------------------------- /StereoVuv4/StereoVuv4.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/StereoVuv4/StereoVuv4.ino -------------------------------------------------------------------------------- /StereoVuv4/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/StereoVuv4/rgb.h -------------------------------------------------------------------------------- /StereoVuv4/rgb_operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/StereoVuv4/rgb_operators.h -------------------------------------------------------------------------------- /StereoVuv4/water_torture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/StereoVuv4/water_torture.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/AudioLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/AudioLogic.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/AudioPatterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/AudioPatterns.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/Commands.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/Drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/Drawing.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/Effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/Effects.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/Fire2012WithPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/Fire2012WithPalette.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/Fire2013WithPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/Fire2013WithPalette.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/GradientPalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/GradientPalettes.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/LICENSE -------------------------------------------------------------------------------- /Torch Lamp to Frame/Noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/Noise.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/Pulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/Pulse.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/README.md -------------------------------------------------------------------------------- /Torch Lamp to Frame/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/Readme.md -------------------------------------------------------------------------------- /Torch Lamp to Frame/Torch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/Torch.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/Torch2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/Torch2.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/Wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/Wave.h -------------------------------------------------------------------------------- /Torch Lamp to Frame/torchframe.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Torch Lamp to Frame/torchframe.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/COPYING -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/README.md -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/WS2812_Definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/WS2812_Definitions.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/examples/buttoncycler/buttoncycler.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/examples/buttoncycler/buttoncycler.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/examples/simple/simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/examples/simple/simple.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/examples/strandtest/strandtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/examples/strandtest/strandtest.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/Adafruit_NeoPixel/keywords.txt -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | *.gch 3 | -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/FastLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/FastLED.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/FastLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/FastLED.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/LICENSE -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/PORTING.md -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/README.md -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/bitswap.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/bitswap.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/chipsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/chipsets.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/color.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/colorpalettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/colorpalettes.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/colorpalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/colorpalettes.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/colorutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/colorutils.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/colorutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/colorutils.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/controller.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/cpp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/cpp_compat.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/dmx.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/docs/Doxyfile -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/docs/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/docs/mainpage.dox -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/AnalogOutput/AnalogOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/AnalogOutput/AnalogOutput.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/ColorPalette/ColorPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/ColorPalette/ColorPalette.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/ColorTemperature/ColorTemperature.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/ColorTemperature/ColorTemperature.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Cylon/Cylon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Cylon/Cylon.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/DemoReel100/DemoReel100.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/DemoReel100/DemoReel100.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/DemoReelESP32/DemoReelESP32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/DemoReelESP32/DemoReelESP32.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Fire2012/Fire2012.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Fire2012/Fire2012.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Fire2012WithPalette/Fire2012WithPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Fire2012WithPalette/Fire2012WithPalette.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/FirstLight/FirstLight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/FirstLight/FirstLight.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Multiple/MirroringSample/MirroringSample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Multiple/MirroringSample/MirroringSample.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Noise/Noise.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Noise/Noise.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/NoisePlayground/NoisePlayground.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/NoisePlayground/NoisePlayground.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Pintest/Pintest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Pintest/Pintest.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/RGBCalibrate/RGBCalibrate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/RGBCalibrate/RGBCalibrate.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/RGBSetDemo/RGBSetDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/RGBSetDemo/RGBSetDemo.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/SmartMatrix/SmartMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/SmartMatrix/SmartMatrix.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/XYMatrix/XYMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/examples/XYMatrix/XYMatrix.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/extras/AppleII.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/extras/AppleII.s65 -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/extras/FastLED6502.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/extras/FastLED6502.s65 -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/extras/RainbowDemo.bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/extras/RainbowDemo.bin.zip -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/extras/RainbowDemo.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/extras/RainbowDemo.s65 -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastled_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastled_config.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastled_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastled_delay.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastled_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastled_progmem.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastpin.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastspi.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastspi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastspi_bitbang.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastspi_dma.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastspi_nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastspi_nop.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastspi_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastspi_ref.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastspi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/fastspi_types.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/hsv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/hsv2rgb.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/hsv2rgb.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/keywords.txt -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/led_sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/led_sysdefs.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/lib8tion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/lib8tion.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/lib8tion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/lib8tion.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/lib8tion/math8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/lib8tion/math8.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/lib8tion/random8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/lib8tion/random8.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/lib8tion/scale8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/lib8tion/scale8.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/lib8tion/trig8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/lib8tion/trig8.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/library.json -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/library.properties -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/noise.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/noise.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/pixelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/pixelset.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/pixeltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/pixeltypes.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/common/m0clockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/common/m0clockless.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/d21/clockless_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/d21/clockless_arm_d21.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/d21/fastled_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/d21/fastled_arm_d21.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/d21/fastpin_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/d21/fastpin_arm_d21.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/d21/led_sysdefs_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/d21/led_sysdefs_arm_d21.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/clockless_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/clockless_arm_k20.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/clockless_block_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/clockless_block_arm_k20.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/fastled_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/fastled_arm_k20.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/fastpin_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/fastpin_arm_k20.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/fastspi_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/fastspi_arm_k20.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/led_sysdefs_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/led_sysdefs_arm_k20.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/octows2811_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/octows2811_controller.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/smartmatrix_t3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/smartmatrix_t3.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/ws2812serial_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k20/ws2812serial_controller.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k66/clockless_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k66/clockless_arm_k66.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k66/clockless_block_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k66/clockless_block_arm_k66.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k66/fastled_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k66/fastled_arm_k66.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k66/fastpin_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k66/fastpin_arm_k66.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k66/fastspi_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k66/fastspi_arm_k66.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k66/led_sysdefs_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/k66/led_sysdefs_arm_k66.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/kl26/clockless_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/kl26/clockless_arm_kl26.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/kl26/fastled_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/kl26/fastled_arm_kl26.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/kl26/fastpin_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/kl26/fastpin_arm_kl26.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/kl26/fastspi_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/kl26/fastspi_arm_kl26.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/kl26/led_sysdefs_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/kl26/led_sysdefs_arm_kl26.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/nrf51/clockless_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/nrf51/clockless_arm_nrf51.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/nrf51/fastled_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/nrf51/fastled_arm_nrf51.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/nrf51/fastpin_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/nrf51/fastpin_arm_nrf51.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/nrf51/fastspi_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/nrf51/fastspi_arm_nrf51.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/sam/clockless_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/sam/clockless_arm_sam.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/sam/clockless_block_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/sam/clockless_block_arm_sam.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/sam/fastled_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/sam/fastled_arm_sam.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/sam/fastpin_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/sam/fastpin_arm_sam.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/sam/fastspi_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/sam/fastspi_arm_sam.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/sam/led_sysdefs_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/sam/led_sysdefs_arm_sam.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/stm32/clockless_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/stm32/clockless_arm_stm32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/stm32/fastled_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/stm32/fastled_arm_stm32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/stm32/fastpin_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/stm32/fastpin_arm_stm32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/stm32/led_sysdefs_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/arm/stm32/led_sysdefs_arm_stm32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/avr/clockless_trinket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/avr/clockless_trinket.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/avr/fastled_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/avr/fastled_avr.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/avr/fastpin_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/avr/fastpin_avr.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/avr/fastspi_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/avr/fastspi_avr.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/avr/led_sysdefs_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/avr/led_sysdefs_avr.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/32/clockless_block_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/32/clockless_block_esp32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/32/clockless_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/32/clockless_esp32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/32/fastled_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/32/fastled_esp32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/32/fastpin_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/32/fastpin_esp32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/32/led_sysdefs_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/32/led_sysdefs_esp32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/8266/clockless_block_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/8266/clockless_block_esp8266.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/8266/clockless_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/8266/clockless_esp8266.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/8266/fastled_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/8266/fastled_esp8266.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/8266/fastpin_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/8266/fastpin_esp8266.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/8266/led_sysdefs_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/platforms/esp/8266/led_sysdefs_esp8266.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/power_mgt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/power_mgt.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/power_mgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/power_mgt.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/preview_changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/preview_changes.txt -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/release_notes.md -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/wiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/Libraries/FastLED/wiring.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/patterns2/patterns2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/patterns2/patterns2.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/patterns2/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/patterns2/rgb.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/patterns2/rgb_operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/patterns2/rgb_operators.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Patterns/patterns2/water_torture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Patterns/patterns2/water_torture.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/COPYING -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/README.md -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/WS2812_Definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/WS2812_Definitions.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/examples/buttoncycler/buttoncycler.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/examples/buttoncycler/buttoncycler.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/examples/simple/simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/examples/simple/simple.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/examples/strandtest/strandtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/examples/strandtest/strandtest.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/Adafruit_NeoPixel/keywords.txt -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | *.gch 3 | -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/FastLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/FastLED.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/FastLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/FastLED.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/LICENSE -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/PORTING.md -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/README.md -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/bitswap.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/bitswap.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/chipsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/chipsets.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/color.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/colorpalettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/colorpalettes.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/colorpalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/colorpalettes.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/colorutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/colorutils.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/colorutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/colorutils.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/controller.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/cpp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/cpp_compat.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/dmx.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/docs/Doxyfile -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/docs/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/docs/mainpage.dox -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/AnalogOutput/AnalogOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/AnalogOutput/AnalogOutput.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/ColorPalette/ColorPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/ColorPalette/ColorPalette.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/ColorTemperature/ColorTemperature.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/ColorTemperature/ColorTemperature.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Cylon/Cylon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Cylon/Cylon.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/DemoReel100/DemoReel100.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/DemoReel100/DemoReel100.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/DemoReelESP32/DemoReelESP32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/DemoReelESP32/DemoReelESP32.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Fire2012/Fire2012.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Fire2012/Fire2012.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Fire2012WithPalette/Fire2012WithPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Fire2012WithPalette/Fire2012WithPalette.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/FirstLight/FirstLight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/FirstLight/FirstLight.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Multiple/MirroringSample/MirroringSample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Multiple/MirroringSample/MirroringSample.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Multiple/MultiArrays/MultiArrays.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Noise/Noise.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Noise/Noise.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/NoisePlayground/NoisePlayground.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/NoisePlayground/NoisePlayground.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/NoisePlusPalette/NoisePlusPalette.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Pintest/Pintest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Pintest/Pintest.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/RGBCalibrate/RGBCalibrate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/RGBCalibrate/RGBCalibrate.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/RGBSetDemo/RGBSetDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/RGBSetDemo/RGBSetDemo.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/SmartMatrix/SmartMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/SmartMatrix/SmartMatrix.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/XYMatrix/XYMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/examples/XYMatrix/XYMatrix.ino -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/extras/AppleII.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/extras/AppleII.s65 -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/extras/FastLED6502.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/extras/FastLED6502.s65 -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/extras/RainbowDemo.bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/extras/RainbowDemo.bin.zip -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/extras/RainbowDemo.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/extras/RainbowDemo.s65 -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastled_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastled_config.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastled_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastled_delay.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastled_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastled_progmem.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastpin.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastspi.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastspi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastspi_bitbang.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastspi_dma.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastspi_nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastspi_nop.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastspi_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastspi_ref.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastspi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/fastspi_types.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/hsv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/hsv2rgb.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/hsv2rgb.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/keywords.txt -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/led_sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/led_sysdefs.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/lib8tion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/lib8tion.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/lib8tion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/lib8tion.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/lib8tion/math8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/lib8tion/math8.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/lib8tion/random8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/lib8tion/random8.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/lib8tion/scale8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/lib8tion/scale8.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/lib8tion/trig8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/lib8tion/trig8.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/library.json -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/library.properties -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/noise.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/noise.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/pixelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/pixelset.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/pixeltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/pixeltypes.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/common/m0clockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/common/m0clockless.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/d21/clockless_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/d21/clockless_arm_d21.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/d21/fastled_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/d21/fastled_arm_d21.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/d21/fastpin_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/d21/fastpin_arm_d21.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/d21/led_sysdefs_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/d21/led_sysdefs_arm_d21.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/clockless_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/clockless_arm_k20.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/clockless_block_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/clockless_block_arm_k20.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/fastled_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/fastled_arm_k20.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/fastpin_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/fastpin_arm_k20.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/fastspi_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/fastspi_arm_k20.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/led_sysdefs_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/led_sysdefs_arm_k20.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/octows2811_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/octows2811_controller.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/smartmatrix_t3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/smartmatrix_t3.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/ws2812serial_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k20/ws2812serial_controller.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k66/clockless_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k66/clockless_arm_k66.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k66/clockless_block_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k66/clockless_block_arm_k66.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k66/fastled_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k66/fastled_arm_k66.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k66/fastpin_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k66/fastpin_arm_k66.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k66/fastspi_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k66/fastspi_arm_k66.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k66/led_sysdefs_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/k66/led_sysdefs_arm_k66.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/kl26/clockless_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/kl26/clockless_arm_kl26.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/kl26/fastled_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/kl26/fastled_arm_kl26.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/kl26/fastpin_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/kl26/fastpin_arm_kl26.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/kl26/fastspi_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/kl26/fastspi_arm_kl26.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/kl26/led_sysdefs_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/kl26/led_sysdefs_arm_kl26.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/nrf51/clockless_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/nrf51/clockless_arm_nrf51.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/nrf51/fastled_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/nrf51/fastled_arm_nrf51.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/nrf51/fastpin_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/nrf51/fastpin_arm_nrf51.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/nrf51/fastspi_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/nrf51/fastspi_arm_nrf51.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/sam/clockless_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/sam/clockless_arm_sam.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/sam/clockless_block_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/sam/clockless_block_arm_sam.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/sam/fastled_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/sam/fastled_arm_sam.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/sam/fastpin_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/sam/fastpin_arm_sam.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/sam/fastspi_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/sam/fastspi_arm_sam.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/sam/led_sysdefs_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/sam/led_sysdefs_arm_sam.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/stm32/clockless_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/stm32/clockless_arm_stm32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/stm32/fastled_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/stm32/fastled_arm_stm32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/stm32/fastpin_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/stm32/fastpin_arm_stm32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/stm32/led_sysdefs_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/arm/stm32/led_sysdefs_arm_stm32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/avr/clockless_trinket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/avr/clockless_trinket.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/avr/fastled_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/avr/fastled_avr.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/avr/fastpin_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/avr/fastpin_avr.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/avr/fastspi_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/avr/fastspi_avr.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/avr/led_sysdefs_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/avr/led_sysdefs_avr.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/32/clockless_block_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/32/clockless_block_esp32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/32/clockless_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/32/clockless_esp32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/32/fastled_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/32/fastled_esp32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/32/fastpin_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/32/fastpin_esp32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/32/led_sysdefs_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/32/led_sysdefs_esp32.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/8266/clockless_block_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/8266/clockless_block_esp8266.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/8266/clockless_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/8266/clockless_esp8266.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/8266/fastled_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/8266/fastled_esp8266.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/8266/fastpin_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/8266/fastpin_esp8266.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/8266/led_sysdefs_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/platforms/esp/8266/led_sysdefs_esp8266.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/power_mgt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/power_mgt.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/power_mgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/power_mgt.h -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/preview_changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/preview_changes.txt -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/release_notes.md -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/wiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/Libraries/FastLED/wiring.cpp -------------------------------------------------------------------------------- /UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/justvu/justvu.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/UNO VU-Meter and Patterns Only 9-15-18/Uno_vumeter/justvu/justvu.ino -------------------------------------------------------------------------------- /Vu_Meter_FinalV2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Vu_Meter_FinalV2/Readme.md -------------------------------------------------------------------------------- /Vu_Meter_FinalV2/Vu_Meter_FinalV2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Vu_Meter_FinalV2/Vu_Meter_FinalV2.ino -------------------------------------------------------------------------------- /Vu_Meter_FinalV2/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Vu_Meter_FinalV2/rgb.h -------------------------------------------------------------------------------- /Vu_Meter_FinalV2/rgb_operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Vu_Meter_FinalV2/rgb_operators.h -------------------------------------------------------------------------------- /Vu_Meter_FinalV2/water_torture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/Vu_Meter_FinalV2/water_torture.h -------------------------------------------------------------------------------- /msgeq7 vu/Msgeq7_Vu/Msgeq7_Vu.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/Msgeq7_Vu/Msgeq7_Vu.ino -------------------------------------------------------------------------------- /msgeq7 vu/Msgeq7_Vu/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/Msgeq7_Vu/rgb.h -------------------------------------------------------------------------------- /msgeq7 vu/Msgeq7_Vu/rgb_operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/Msgeq7_Vu/rgb_operators.h -------------------------------------------------------------------------------- /msgeq7 vu/Msgeq7_Vu/water_torture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/Msgeq7_Vu/water_torture.h -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/Readme.md -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/VuMeter_tv.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/VuMeter_tv.rar -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/examples/MSGEQ7_FastLED/MSGEQ7_FastLED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/examples/MSGEQ7_FastLED/MSGEQ7_FastLED.ino -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/examples/MSGEQ7_LED/MSGEQ7_LED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/examples/MSGEQ7_LED/MSGEQ7_LED.ino -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/examples/MSGEQ7_Serial/MSGEQ7_Serial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/examples/MSGEQ7_Serial/MSGEQ7_Serial.ino -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/examples/MSGEQ7_Serial_Capture/MSGEQ7_Serial_Capture.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/examples/MSGEQ7_Serial_Capture/MSGEQ7_Serial_Capture.ino -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/board/MSGEQ7.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/board/MSGEQ7.brd -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/board/MSGEQ7.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/board/MSGEQ7.sch -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/board/MSGEQ7_Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/board/MSGEQ7_Gerber.zip -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/board/MSGEQ7_PCB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/board/MSGEQ7_PCB.pdf -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/board/MSGEQ7_PCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/board/MSGEQ7_PCB.png -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/board/MSGEQ7_Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/board/MSGEQ7_Schematic.pdf -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/board/MSGEQ7_Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/board/MSGEQ7_Schematic.png -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/board/PCB_Bottom.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/board/PCB_Bottom.PNG -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/board/PCB_Top.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/board/PCB_Top.PNG -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/breadboard/MSGEQ7_Breadboard.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/breadboard/MSGEQ7_Breadboard.fzz -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/breadboard/MSGEQ7_Breadboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/breadboard/MSGEQ7_Breadboard.png -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/breadboard/MSGEQ7_Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/breadboard/MSGEQ7_Schematic.png -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/pictures/audio_jacks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/pictures/audio_jacks.jpg -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/pictures/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/pictures/board.jpg -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/extras/pictures/pcb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/extras/pictures/pcb.jpg -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/header.png -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/keywords.txt -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/library.properties -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/src/MSGEQ7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/src/MSGEQ7.h -------------------------------------------------------------------------------- /msgeq7 vu/msgeq7/src/MSGEQ7.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/msgeq7 vu/msgeq7/src/MSGEQ7.hpp -------------------------------------------------------------------------------- /vu meter ring - update/new_ring.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilson3682/Cine-Lights_VU-and-More/HEAD/vu meter ring - update/new_ring.ino --------------------------------------------------------------------------------