Display Element
Use it to make a smartwatch or to build a messenger to chat with friends. Or use it to show the score of a foosball match.
The Plezmo Display Element shows text or images. Select images from the library or upload images. Customize how it looks by changing the background and foreground colors of the text.
What's Inside

Size: 40mm x 40mm x 10mm
Battery Life: approximately 4hrs
Key hardware components:
- Smart power module to regulate the power to the element and manage charging of the battery
- Intelligent BLE-module for communication with Apps
- Tricolor (RGB) LEDs for status indications
- Accelerometer to support basic features like double-tap to wake-up
- Long-lasting 250mAH Li-Polymer battery
- The Display element comes with a high resolution color display panel. The features of the panel are:
- Resolution: 240 x 240 RGB pixels
- Display type: LCD
- Backlit: 3 powerful white LEDs
Display Text

# Show text with additional control settings like line number and alignment
Display.showText(‘Display’, DisplayLine.ONE, TextAlignment.CENTER, ‘Hello’)
Display Text Color

# Set the text font color. For e.g. RED
Display.setTextColor(‘Display’, DisplayBackground.RED)
Clear Display

# Clear the screen
Display.clearDisplay(‘Display’)
Display Font Size

#Set the font size e.g. Small / Medium
Display.setFontSize(‘Display’, FontSize.SMALL)
Display Image

# Show an image on the display screen
Display.showImage(‘Display’, DisplayImage.GRINNING_FACE)
Display Background

# Set the background color of the display screen to particular color. e.g. RED
Display.paintBackgroundColor(‘Display’, DisplayBackground.RED)