-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
ST7567S 128X64 I2C unknown variant #2462
Comments
I don't know if it helps but this library mostly works (except I can't get it to display images). There is a datasheet included. |
In case of SW_I2C you can use any kind of pin. Just provide the pin numbers for clock and data.
Sometimes it is better to use the Contrast example, because the displays might differ in the contrast setup (u8g2.setContrast() might be required) |
Thanks. I tried each within ContrastTest.ino and some seem to alter the contrast a little. But when I try these constructor in GraphicsTest.ino I get nothing. Is this library compatible with Arduino 1.8.19? I used the latest available from the manager.
|
u8g2 should be compatible with 1.8.19, but I am a little bit behind testing the latest arduino version. In fact also Arduin 2.x should work. |
I have Arduino 1.8.19 on my laptop, so far it's working fine. |
Is there a way to modify your library so it works with my display variant? I can only get it to work properly with another library. |
hmm... you mentioned, that your display looks like the one in #2364 |
Anyhow, I would need much more information about your display. |
I have an ST7567S variant I2C display that looks identical to #2364, it has I2C address 0x3F. I tried using these 4 as per thread but none of them work with the Hello World example:
Just to make sure, how should I connect it to Arduino Nano with this library? I have the display connected to I2C pins A4, A5 and putting
U8G2_ST7567_OS12864_1_SW_I2C u8g2(U8G2_R0, 19, 18);
where it expects the constructor. I also triedU8G2_ST7567_OS12864_1_SW_I2C u8g2(U8G2_R0, A5, A4);
followinghttps://github.com/olikraus/u8g2/blob/master/doc/faq.txt
https://www.arduino.cc/reference/en/language/functions/communication/wire/
The text was updated successfully, but these errors were encountered: