We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I receive an error, when compiling with...
#define USE_OLED true
The error message is...
Arduino: 1.8.16 (Mac OS X), Board: "Adafruit Feather M4 Express (SAMD51), Enabled, 120 MHz (standard), Small (-Os) (standard), 50 MHz (standard), Arduino, Off" multiple_encoders:16:59: error: invalid cast to abstract class type 'Adafruit_SH110X' 16 | Adafruit_SH110X display = Adafruit_SH110X(64, 128, &Wire);
Arduino: 1.8.16 (Mac OS X), Board: "Adafruit Feather M4 Express (SAMD51), Enabled, 120 MHz (standard), Small (-Os) (standard), 50 MHz (standard), Arduino, Off"
multiple_encoders:16:59: error: invalid cast to abstract class type 'Adafruit_SH110X' 16 | Adafruit_SH110X display = Adafruit_SH110X(64, 128, &Wire);
Replacing...
Adafruit_SH110X display = Adafruit_SH110X(64, 128, &Wire);
With....
Adafruit_SH1107 display = Adafruit_SH1107(64, 128, &Wire);
Compiles successfully.
The text was updated successfully, but these errors were encountered:
ok thanks, can you submit a PR please ? :)
Sorry, something went wrong.
My first PR, hopefully I did it properly.
looks good! congrats :)
No branches or pull requests
I receive an error, when compiling with...
#define USE_OLED true
The error message is...
Replacing...
Adafruit_SH110X display = Adafruit_SH110X(64, 128, &Wire);
With....
Adafruit_SH1107 display = Adafruit_SH1107(64, 128, &Wire);
Compiles successfully.
The text was updated successfully, but these errors were encountered: