Skip to content

Commit 141929e

Browse files
authored
fixes from noppatoppa
1 parent 5ef3d8e commit 141929e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

examples/Oled_Display/Oled_Display.ino

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,8 @@ void loop() {
99
int random_value = random(0, 1023); // create a random value
1010

1111
Oled.setFont(u8x8_font_chroma48medium8_r);
12-
// Y needs to be a multiple of 9 for a font of 8 or the display
13-
// will end up in an incorrect place.
14-
Oled.setCursor(0, 27);
12+
Oled.setCursor(0, 3);
1513
Oled.print("Value: ");
1614
Oled.print(random_value)
17-
Oled.refreshDisplay();
1815
delay(1000);
1916
}

0 commit comments

Comments
 (0)