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.
2 parents cbf0040 + 141929e commit 915f40aCopy full SHA for 915f40a
examples/Oled_Display/Oled_Display.ino
@@ -9,10 +9,8 @@ void loop() {
9
int random_value = random(0, 1023); // create a random value
10
11
Oled.setFont(u8x8_font_chroma48medium8_r);
12
- Oled.setCursor(0, 33);
13
- Oled.print("Temp: ");
14
- Oled.print(random_value);
15
- Oled.print("C");
16
- Oled.refreshDisplay();
+ Oled.setCursor(0, 3);
+ Oled.print("Value: ");
+ Oled.print(random_value)
17
delay(1000);
18
}
0 commit comments