The OLED Display is an OLED monochrome 128×64dot matrix display module.

Grove OLED Display

Hardware

The OLED display is directlyconnected to one of the I2C ports on your Seeed Studio Grove Beginner Kit for Arduino.

Software

Functions that interact with the LCD screen are prefixed with oled_.

Initialization

No special initialization is required for interacting with the OLED display.

Text output

Text is displayed (or cleared!) on the LCD screen using the following functions.

def oled_print(value):
    """Print a value to the OLED display.

    Parameters:
      value:    Any value, of any type.
    """
def oled_clear():
    """Clear all text from the OLED display.
    """