more spiral, more rainbow!!

This commit is contained in:
foamyguy 2025-07-14 17:14:34 -05:00
parent e9a07d4942
commit 263f530375

View file

@ -30,7 +30,7 @@ pixelmap = simple_multilane_mapper(width, height, n_addr_lines, n_lanes)
geometry = piomatter.Geometry(width=width, height=height, n_addr_lines=n_addr_lines, n_planes=10, n_temporal_planes=4, map=pixelmap, n_lanes=n_lanes) geometry = piomatter.Geometry(width=width, height=height, n_addr_lines=n_addr_lines, n_planes=10, n_temporal_planes=4, map=pixelmap, n_lanes=n_lanes)
framebuffer = np.asarray(canvas) + 0 # Make a mutable copy framebuffer = np.asarray(canvas) + 0 # Make a mutable copy
matrix = piomatter.PioMatter(colorspace=piomatter.Colorspace.RGB888Packed, matrix = piomatter.PioMatter(colorspace=piomatter.Colorspace.RGB888Packed,
pinout=piomatter.Pinout.Active3, pinout=piomatter.Pinout.Active3BGR,
framebuffer=framebuffer, framebuffer=framebuffer,
geometry=geometry) geometry=geometry)
@ -66,7 +66,7 @@ def darken_color(hex_color, darkness_factor):
return darkened_hex_color return darkened_hex_color
step_count = 4 step_count = 8
darkness_factor = 0.5 darkness_factor = 0.5
clearing = False clearing = False