We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The error I get when trying to compile the example file "ssd1306_128x64_12c" is the following:
Adafruit_SSD1306.cpp:42:10: fatal error: pgmspace.h: No such file or directory
Lines 39-42 of such cpp file looks like this: #ifdef AVR #include <avr/pgmspace.h> #elif defined(ESP8266) || defined(ESP32) || defined(ARDUINO_ARCH_RP2040) #include <pgmspace.h>
If I modify line 42 like this: #include <avr/pgmspace.h> then the sketch compiles and works as expected.
So it seems that the Pico uses the avr pgmspace, maybe this can be modified in the cpp file Thanks!