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
Describe the bug Trying to define the I2C clockspeed i have to put in I2C_ONE / I2C_TWO but those are not defined even when includeing OLEDDisplay.h
#include <OLEDDisplay.h> #include <SSD1306Wire.h> SSD1306Wire oled(0x3c, 0, 2, GEOMETRY_128_64, I2C_ONE, 200000); void setup() {} void loop() {}
results in
exit status 1 'I2C_ONE' was not declared in this scope
====
#include <OLEDDisplay.h> #include <SSD1306Wire.h> enum HW_I2C { I2C_ONE, I2C_TWO }; SSD1306Wire oled(0x3c, 0, 2, GEOMETRY_128_64, I2C_ONE, 200000); void setup() {} void loop() {}
exit status 1 multiple definition of 'enum HW_I2C'
#include <OLEDDisplay.h> #include <SSD1306Wire.h> SSD1306Wire oled(0x3c, 0, 2, GEOMETRY_128_64, (HW_I2C)1, 200000); void setup() {} void loop() {}
exit status 1 'HW_I2C' was not declared in this scope
im kinda confused. its defined and not defined at the same time.
Versions (please complete the following information):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Trying to define the I2C clockspeed i have to put in I2C_ONE / I2C_TWO but those are not defined even when includeing OLEDDisplay.h
results in
====
results in
====
results in
im kinda confused. its defined and not defined at the same time.
Versions (please complete the following information):
The text was updated successfully, but these errors were encountered: