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
Ya, the plan is to update everything once 9.0 is stable and it's been long enough for folks to be using it by default. You can disable the warning output in the meantime.
When this library is used with CP9 some "FutureWarnings" are generated due to this line
https://github.com/adafruit/Adafruit_CircuitPython_DisplayIO_SSD1306/blob/main/adafruit_displayio_ssd1306.py#L62
class SSD1306(displayio.Display):
I think it just needs to be changed to:
class SSD1306(busdisplay.BusDisplay):
as well as importing busdisplay instead of displayio
Is this already planned for update when CP9 is released?
I suppose it will need to check for the CP release for backward compatibility.
I imagine there will be many guide updates as well when CP9 is released.
https://learn.adafruit.com/adafruit-oled-featherwing/python-usage and had to make a new changes to code.py but also had to update the library as noted to eliminate all warnings.
I just wanted to open this as a warning to other users. Feel free to close it if this is being dealt with in another way.
Since the FutureWarnings are just Warnings, it works fine as is but the warnings can be annoying.
The text was updated successfully, but these errors were encountered: