Skip to content

Instantly share code, notes, and snippets.

@root42
Last active June 17, 2023 15:14
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save root42/4f5cc0b389ef09283ec5afc1ba2d873a to your computer and use it in GitHub Desktop.
Save root42/4f5cc0b389ef09283ec5afc1ba2d873a to your computer and use it in GitHub Desktop.
rpi_ws218x example program: plasma effect
#!/usr/bin/env python
import time
import math
import colorsys
from neopixel import *
# LED strip configuration:
LED_COUNT = 128 # Number of LED pixels.
LED_PIN = 18 # GPIO pin connected to the pixels (must support PWM!).
LED_FREQ_HZ = 800000 # LED signal frequency in hertz (usually 800khz)
LED_DMA = 10 # DMA channel to use for generating signal (try 10)
LED_BRIGHTNESS = 128 # Set to 0 for darkest and 255 for brightest
# True to invert the signal (when using NPN transistor level shift)
LED_INVERT = False
# Draws an animated horizontal bar test pattern for alignment
def bar(w,h,t):
out = [ Color( 0, 0, 0 ) for x in range( w * h ) ]
y = int(t * 4) % h
for x in range(0, w):
out[ x + y * w ] = Color( 10, 10, 10 )
return out
# Draws an animated colorful plasma effect
def plasma (w, h, t):
out = [ Color( 0, 0, 0 ) for x in range( w * h ) ]
for x in range( w ):
for y in range( h ):
hue = 4.0 + math.sin( t + x ) + math.sin( t + y / 4.5 ) \
+ math.sin( x + y + t ) + math.sin( math.sqrt( ( x + t ) ** 2.0 + ( y + 1.5 * t ) ** 2.0 ) / 4.0 )
hsv = colorsys.hsv_to_rgb( hue / 8.0, 1, 1 )
out[ x + y * w ] = Color( *[ int( round( c * 10.0 ) ) for c in hsv ] )
return out
# Main program logic follows:
if __name__ == '__main__':
# Create NeoPixel object with appropriate configuration.
strip = Adafruit_NeoPixel(
LED_COUNT,
LED_PIN,
LED_FREQ_HZ,
LED_DMA,
LED_INVERT,
LED_BRIGHTNESS
)
# Intialize the library (must be called once before other functions).
strip.begin()
t = 0.0 # time
dt = 0.1 # speed of time
for i in range( 0, strip.numPixels(), 1): # iterate over all LEDs
strip.setPixelColor( i, Color( 0, 0, 0 ) ) # set LED to black (off)
while True:
t = t + dt # increment time
pic = plasma( 8, 16, t ) # render plasma of size 8x8 at time t
#pic = bar( 8, 16, t ) # remove comment for bar test pattern
for i in range( 0, strip.numPixels(), 1 ): # iterate over all LEDs
strip.setPixelColor( # set pixel to color in picture
i,
pic[ i ]
)
strip.show() # update LEDs
time.sleep(0.01) # wait a short while before loop
@Novecento99
Copy link

thanks man, nice doggo btw

@kungfurichie
Copy link

Thanks for all the effort in this. I'm getting an error on line 38 - NameError: name 'Adafruit_NeoPixel' is not defined.

Any ideas?
Thanks

Copy link

ghost commented Mar 2, 2023

Using “from rpi_ws281x import Adafruit_NeoPixel, Color” instead of "from neopixel import *" in the import library.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment