This example shows how to display text on an OLED screen using a Raspberry Pi. First, we import the needed libraries. Then, we create a display object for a 128x32 OLED. We clear the screen buffer to black using display.fill(0). Next, we write the text 'Hello, OLED!' at the top-left corner (0,0) in white color. The text is written to an internal buffer but not shown yet. Finally, we call display.show() to send the buffer to the OLED hardware, making the text visible. The program ends with the text displayed on the screen. Remember, writing text only changes the buffer; you must call show() to update the screen. Also, clearing the buffer before writing avoids leftover pixels from previous content.