IEMALORIET SH1107 64x128 OLED Display Module

IEMALORIET 1.3 Inch OLED Display Module (SH1107, 64x128) User Manual

Model: SH1107 64x128 OLED Display Module

1. Introduction

This manual provides detailed instructions for the IEMALORIET 1.3 Inch OLED Display Module, featuring a 64x128 resolution and SH1107 driver. This compact, high-contrast display is designed for integration into various electronic projects, including those based on Arduino platforms. Please read this manual thoroughly before installation and operation to ensure proper use and optimal performance.

IEMALORIET 1.3 Inch OLED Display Module front and back

Figure 1: Front and back view of the IEMALORIET 1.3 Inch OLED Display Module. The front shows the 1.3 OLED 64x128 IIC SH1107 display, while the back reveals the circuit board with components and pin labels (GND, VCC, SCL, SDA).

2. Key Features

3. Technical Specifications

ParameterValue
Display Size1.3 inches
Resolution64 x 128 pixels
Driver ICSH1107
InterfaceI2C (IIC)
Operating Voltage3.3V - 5V (Typical)
Pin ConfigurationGND, VCC, SCL, SDA
ManufacturerIEMALORIET
ASINB0F4RG4M87

4. Setup and Connection

This section outlines the steps for connecting your OLED display module to a microcontroller, such as an Arduino board. Ensure all connections are secure before powering on your circuit.

4.1 Pinout Description

4.2 Connection Steps (Example with Arduino Uno)

  1. Connect the GND pin of the OLED module to the GND pin on your Arduino.
  2. Connect the VCC pin of the OLED module to the 5V or 3.3V pin on your Arduino (check your specific Arduino model for appropriate voltage).
  3. Connect the SCL pin of the OLED module to the A5 (SCL) pin on your Arduino Uno.
  4. Connect the SDA pin of the OLED module to the A4 (SDA) pin on your Arduino Uno.
Various electronic components including integrated circuits, resistors, and capacitors

Figure 2: An assortment of electronic components, illustrating the typical environment and parts used in projects with this OLED module. This image represents the broader context of electronic components often used alongside the display.

5. Operation and Programming

To operate the OLED display, you will need to use a compatible library for your chosen microcontroller. For Arduino, popular libraries like Adafruit GFX and Adafruit SH110X are recommended.

5.1 Software Installation (Arduino IDE)

  1. Open your Arduino IDE.
  2. Go to Sketch > Include Library > Manage Libraries...
  3. Search for "Adafruit GFX Library" and install it.
  4. Search for "Adafruit SH110X Library" and install it.

5.2 Basic Code Example (Arduino)

The following is a basic example to display "Hello, World!" on the OLED screen. This code assumes you have correctly wired the module as described in the Setup section.

#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SH110X.h>

#define OLED_RESET -1 // Reset pin # (or -1 if sharing Arduino reset pin)
Adafruit_SH1107 display(128, 64, &Wire, OLED_RESET);

void setup() {
  Serial.begin(115200);
  display.begin(0x3C, true); // Address 0x3C for 128x64
  display.display();
  delay(2000);
  display.clearDisplay();
  display.setTextSize(1);
  display.setTextColor(SH110X_WHITE);
  display.setCursor(0,0);
  display.println("Hello, World!");
  display.display();
}

void loop() {
  // Nothing to do here for this simple example
}

Upload this code to your Arduino board. You should see "Hello, World!" displayed on the OLED screen.

6. Maintenance and Care

Proper care ensures the longevity and optimal performance of your OLED display module.

Isometric illustration of various semiconductor electronic components

Figure 3: An isometric illustration depicting a variety of semiconductor electronic components. This image serves as a visual reminder of the intricate nature of electronic devices and the importance of careful handling and maintenance for all components, including the OLED module.

7. Troubleshooting

If you encounter issues with your OLED display module, refer to the following common problems and solutions:

8. Warranty and Customer Support

IEMALORIET products are manufactured to high standards of quality and reliability. While specific warranty details may vary by region and retailer, we are committed to providing excellent customer support.

For technical assistance, troubleshooting, or inquiries regarding your product, please refer to the retailer's support channels or visit the official IEMALORIET website for contact information. Please have your product model number (SH1107 64x128 OLED Display Module) and ASIN (B0F4RG4M87) ready when contacting support.

A factory assembly line with workers assembling electronic components

Figure 4: An image depicting a factory assembly line where workers are engaged in assembling electronic components. This illustrates the manufacturing process and the precision involved in producing electronic modules like the OLED display, reinforcing the product's quality and the brand's commitment to reliable components.