We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c622016 commit e8ea8b7Copy full SHA for e8ea8b7
CircuitPython_Display_Text/colormask_example/code.py
@@ -44,7 +44,7 @@
44
rainbow_palette = displayio.Palette(255)
45
46
for i in range(0, 255):
47
- rainbow_palette[i] = int("".join("%02x" % i for i in colorwheel(i)), 16)
+ rainbow_palette[i] = colorwheel(i)
48
49
for y in range(rainbow_bitmap.height):
50
for x in range(rainbow_bitmap.width):
0 commit comments