diff --git a/examples/Oled_Display/Oled_Display.ino b/examples/Oled_Display/Oled_Display.ino index 0fa9842..54a6d5d 100644 --- a/examples/Oled_Display/Oled_Display.ino +++ b/examples/Oled_Display/Oled_Display.ino @@ -9,10 +9,8 @@ void loop() { int random_value = random(0, 1023); // create a random value Oled.setFont(u8x8_font_chroma48medium8_r); - Oled.setCursor(0, 33); - Oled.print("Temp: "); - Oled.print(random_value); - Oled.print("C"); - Oled.refreshDisplay(); + Oled.setCursor(0, 3); + Oled.print("Value: "); + Oled.print(random_value) delay(1000); }