I think in commit 487ed18 you got rid of to_tuple() and that broke the tkinter adapter. I am now getting the error
File "RGBMatrixEmulator/adapters/tkinter_adapter.py", line 48, in draw_to_screen
self.__canvas.itemconfig(shape_id, fill=Color.to_hex(pixel))
File "RGBMatrixEmulator/graphics/color.py", line 18, in to_hex
return "#%02x%02x%02x" % Color.to_tuple(pixel)
AttributeError: type object 'Color' has no attribute 'to_tuple'
I think in commit 487ed18 you got rid of
to_tuple()
and that broke the tkinter adapter. I am now getting the error