rdagger / micropython-ili9341

MicroPython ILI9341Display & XPT2046 Touch Screen Driver
MIT License
194 stars 40 forks source link

typo in demo_colored_squares.py #23

Closed SeanLyn closed 9 months ago

SeanLyn commented 9 months ago

Missing byte in WHITE color code defining. WHITE = const(0XFFF) # (255, 255, 255) --> WHITE = const(0XFFFF) # (255, 255, 255)

rdagger commented 9 months ago

Thanks for finding the error! It's fixed.