I have a problem reading the SD3132 RTC on my ESP8266 (12E).
I have both devices hookdup on the same bus and use 4,7K pullup resistors.
The SD3132 works fine until I add :
SSD1306 display(0x3c, 5, 4);
display.init();
display.clear();
display.drawString(0, 0, "Display Ready");
display.display();
to the code.
It garbels the time I get back form the RTC
The RTC code is :
RtcDS3231 rtcObject(Wire);
RtcDateTime currentTime = rtcObject.GetDateTime(); //get the time from the RTC
......
Any ideas what I am doing wrong ?