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.
2 parents 0497ea4 + a704e07 commit 8c06db5Copy full SHA for 8c06db5
src/modulino/pixels.py
@@ -12,7 +12,7 @@ class ModulinoColor:
12
- BLUE
13
- YELLOW
14
- CYAN
15
- - VIOLET
+ - MAGENTA
16
- WHITE
17
18
They can be accessed e.g. as ModulinoColor.RED
@@ -50,7 +50,7 @@ def __int__(self) -> int:
50
ModulinoColor.BLUE = ModulinoColor(0, 0, 255)
51
ModulinoColor.YELLOW = ModulinoColor(255, 255, 0)
52
ModulinoColor.CYAN = ModulinoColor(0, 255, 255)
53
-ModulinoColor.VIOLET = ModulinoColor(255, 0, 255)
+ModulinoColor.MAGENTA = ModulinoColor(255, 0, 255)
54
ModulinoColor.WHITE = ModulinoColor(255, 255, 255)
55
56
NUM_LEDS = const(8)
0 commit comments