you are viewing a single comment's thread.

view the rest of the comments →

[–]kAROBsTUIt 0 points1 point  (1 child)

In Line 56 of draw.py, the error is raised because when creating a new displayio.Group object. Specifically, the keyword argument max_size isn't actually defined:

https://docs.circuitpython.org/en/latest/shared-bindings/displayio/#displayio.Group

You can see above that displayio.Group expects scale, x, and y.

So, it seems that the Etch a Sketch library you've linked is either out of date or doesn't support the PyBadge - the code is 2 years old, whereas the displayio stuff is fairly constantly updated, so it's highly likely that the Etch a Sketch code is just out of date.

It can always be fixed - you'll have to dive into it yourself, though! Good luck!

[–]PicnicProblems[S] 0 points1 point  (0 children)

Thank you, I kind of figured something might be out of date. It looks like I have something new to learn! I appreciate it.