You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just trying out the examples from the Adafruit article and almost immediatly got an error:
code.py output:
Traceback (most recent call last):
File "code.py", line 14, in <module>
File "adafruit_cursorcontrol/cursorcontrol.py", line 81, in init
File "adafruit_cursorcontrol/cursorcontrol.py", line 240, in generate_cursor
TypeError: unsupported bitmap type
Not attempting to set a cursor bitmap. So was confused.
Sommersoft on Discord suggested a fix, swapping line 81 for
self.generate_cursor(self.cursor_bitmap)
This does resolve the issue for me.
The text was updated successfully, but these errors were encountered:
@codepope Thanks for pointing this out, it was modified when we allowed user-defined cursor bitmaps. I submitted a pull request with a patch fixing this.
Just trying out the examples from the Adafruit article and almost immediatly got an error:
Not attempting to set a cursor bitmap. So was confused.
Sommersoft on Discord suggested a fix, swapping line 81 for
This does resolve the issue for me.
The text was updated successfully, but these errors were encountered: