Basic Juggle pattern modified for 7 bands - pulsing dots += a bit of bluring
Looks like a nice effect. Looking through the code, I don’t see where the audio is playing any role. Can you point this out in the code for me?
@Brian_Lewis I use the esp8266 project by Jason Coon to write my effects on top of his wonderfull work. It’s on github
Its using SpectrumByte for the value
leds[beatsin16(basebeat + i + map(spectrumByte[i],0,255,1,5), 0, NUM_LEDS)] += CHSV(i*40 + map(spectrumByte[i],0,255,1,20), 255, map(spectrumByte[i],0,255,30,255));
also @Brian_Lewis if you are wondering where the ESP8266 project is by @Jason_Coon
you can add more patterns quite easily to it
@Tommy_Sciano Thanks for pointing out the spectrumByte variable and linking to Jason Coon’s project. I didn’t realize his ESP8266 web server included audio effects.
