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 5ef3d8e commit 141929eCopy full SHA for 141929e
examples/Oled_Display/Oled_Display.ino
@@ -9,11 +9,8 @@ void loop() {
9
int random_value = random(0, 1023); // create a random value
10
11
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);
+ Oled.setCursor(0, 3);
15
Oled.print("Value: ");
16
Oled.print(random_value)
17
- Oled.refreshDisplay();
18
delay(1000);
19
}
0 commit comments