Hello,
I’m using the Adafruit_SSD1306 for my project with the web IDE environment. When I tried to use the setFont method from AdaFruit_GFX, it says :
error: 'class Adafruit_SSD1306' has no member named 'setFont'
After some digging, I found out that the Adafruit_GFX library, used within Adafruit_SSD1306, is not the latest one, as the method setFont is indeed not implemented.
The github link for Adafruit_SSD1306 (https://github.com/mpechner/Adafruit_SSD1306) is dead.
I managed to implement the setFont method by some hideous copy/paste from the latests Adafruit_GFX source within my own code but this is definitely not the way I was hoping for. I know have too many files in my project, it’s almost unreadable within the web IDE.
So what would be the best solution to get the SSD1306 updated with the latest Adafruit_GFX library ?