Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/SSD1306ClockDemo/SSD1306ClockDemo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@

// Initialize the OLED display using Wire library
SSD1306Wire display(0x3c, D3, D5);
// SH1106 display(0x3c, D3, D5);
// SH1106Wire display(0x3c, D3, D5);

OLEDDisplayUi ui ( &display );

Expand Down
2 changes: 1 addition & 1 deletion examples/SSD1306DrawingDemo/SSD1306DrawingDemo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

// Initialize the OLED display using Wire library
SSD1306Wire display(0x3c, D3, D5);
// SH1106 display(0x3c, D3, D5);
// SH1106Wire display(0x3c, D3, D5);

// Adapted from Adafruit_SSD1306
void drawLines() {
Expand Down
2 changes: 1 addition & 1 deletion examples/SSD1306OTADemo/SSD1306OTADemo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

// Initialize the OLED display using Wire library
SSD1306Wire display(0x3c, D3, D5);
// SH1106 display(0x3c, D3, D5);
// SH1106Wire display(0x3c, D3, D5);


void setup() {
Expand Down
2 changes: 1 addition & 1 deletion examples/SSD1306SimpleDemo/SSD1306SimpleDemo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
SSD1306Wire display(0x3c, SDA, SCL); // ADDRESS, SDA, SCL - SDA and SCL usually populate automatically based on your board's pins_arduino.h
// SSD1306Wire display(0x3c, D3, D5); // ADDRESS, SDA, SCL - If not, they can be specified manually.
// SSD1306Wire display(0x3c, SDA, SCL, GEOMETRY_128_32); // ADDRESS, SDA, SCL, OLEDDISPLAY_GEOMETRY - Extra param required for 128x32 displays.
// SH1106 display(0x3c, SDA, SCL); // ADDRESS, SDA, SCL
// SH1106Wire display(0x3c, SDA, SCL); // ADDRESS, SDA, SCL

// Initialize the OLED display using brzo_i2c:
// SSD1306Brzo display(0x3c, D3, D5); // ADDRESS, SDA, SCL
Expand Down