Skip to content

Commit 372d028

Browse files
committed
Updating Example9: changing the default I2C address; disabling debug prints.
1 parent fbcb85a commit 372d028

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: examples/Example9_Lines/Example9_Lines.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include <SFE_MicroOLED.h> //Click here to get the library: http://librarymanager/All#SparkFun_Micro_OLED
2222

2323
#define PIN_RESET 9
24-
#define DC_JUMPER 0
24+
#define DC_JUMPER 1
2525
MicroOLED oled(PIN_RESET, DC_JUMPER); // I2C declaration
2626

2727
void setup()
@@ -32,7 +32,7 @@ void setup()
3232
Serial.begin(115200);
3333
Serial.println(F("Micro OLED Example"));
3434

35-
oled.enableDebugging(); // Uncomment this line to enable debug messages on Serial
35+
//oled.enableDebugging(); // Uncomment this line to enable debug messages on Serial
3636

3737
oled.begin(); // Initialize the OLED
3838
oled.clear(ALL); // Clear the display's internal memory

0 commit comments

Comments
 (0)