You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the datasheet of SSD1306, ACK (SDAout=0) should be sent after every byte. I guess some of the panels only connects SDAin without SDAout to SDA pin. In this situation of cause ACK should be ignored. However I don't think it's a good idea to always ignore ACK no matter whether SDAout is connected. For details please refer to pp.19 of the datasheet.
The interesting thing is - those oleds somehow work fine on Arduino libraries - particularly Adafruit.
I haven't looked deeper there because it is heavy wrapped but they do some kind of oled test before switching it on. Maybe something should be done in our case
This part of code makes some identical oleds not to work
It is caused by I2C::write()
If we ignore __SDAX==0 and return true all works fine. Might related be some incorrect protocol response
The text was updated successfully, but these errors were encountered: