We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01fe242 commit f90368eCopy full SHA for f90368e
examples/SSD1306TwoScreenDemo/SSD1306TwoScreenDemo.ino
@@ -34,6 +34,12 @@
34
#include "images.h"
35
36
// Initialize the OLED display using Wire library
37
+//
38
+// GOTCHA!
39
40
+// Pay attention if you work with ESP32 as some have two I2C buses.
41
+// You need to set the 'i2cBus' constructor parameter accordingly.
42
+// See https://github.com/ThingPulse/esp8266-oled-ssd1306/issues/387#issuecomment-2874437238 for a discussion.
43
SSD1306Wire display(0x3c, 0, 14);
44
SSD1306Wire display2(0x3c, 5, 4);
45
0 commit comments