Skip to content
Snippets Groups Projects
Verified Commit d407658a authored by rahix's avatar rahix
Browse files

feat(py): Add a color module


Signed-off-by: default avatarRahix <rahix@rahix.de>
parent 95f5050b
No related branches found
No related tags found
No related merge requests found
import ucollections
_ColorTuple = ucollections.namedtuple("Color", ["red", "green", "blue"])
class Color(_ColorTuple):
@classmethod
def from_hex(cls, color):
red = (color & 0xff0000) >> 16
green = (color & 0x00ff00) >> 8
blue = (color & 0x0000ff)
return cls(red, green, blue)
def __str__(self):
# Return the color in hex
return "#{:02x}{:02x}{:02x}".format(
self.red, self.green, self.blue
)
Color.BLACK = Color.from_hex(0x000000)
Color.WHITE = Color.from_hex(0xffffff)
Color.RED = Color.from_hex(0xff0000)
Color.GREEN = Color.from_hex(0x00ff00)
Color.YELLOW = Color.from_hex(0xffff00)
Color.BLUE = Color.from_hex(0x0000ff)
Color.MAGENTA = Color.from_hex(0xff00ff)
Color.CYAN = Color.from_hex(0x00ffff)
# Add the colors and constructors to the module for convenience
# This allows you to do the following:
#
# import colors
#
# colors.BLACK
# colors.from_hex(0xc6c6c6)
globals().update(
{
n: getattr(Color, n)
for n in dir(Color)
if n.startswith("from") or n.isupper()
}
)
# Foo Module
def bar():
print("Hello from foo!")
X = 3.14
python_modules = files(
'foo.py',
'color.py',
)
frozen_modules = mpy_cross.process(python_modules)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment