Skip to Content

OLED 1.3 Inch Module Display Blue SSD1306

This is a 1.3-inch OLED display module featuring a 128x64 dot matrix resolution with an I2C interface. It's compatible with Arduino and offers high contrast, wide viewing angles, low power consumption, and a crisp, bright picture. The display uses the SSD1306 OLED driver controller and operates without a backlight LED, making it efficient and ideal for portable or battery-powered applications.

Package Includes:

  • 1 x 1.3-inch OLED Display Module 128x64 I2C

42.00 AED 42.00 AED Tax Included
42.00 AED Tax Included

Not Available For Sale

This combination does not exist.

OLED Blue

Terms and Conditions
30-day money-back guarantee
Shipping: 2-3 Business Days

 

Features:

  • OLED screen with 128x64 dot matrix resolution
  • I2C interface for easy microcontroller integration
  • SSD1306 OLED driver controller
  • Self-emission technology (no backlight required)
  • High contrast and up to 160° viewing angle
  • Deep black color rendering
  • Low power consumption (~20mA average)
  • Compatible with Arduino and 5V logic microcontrollers

Description:

The OLED display module is a compact and efficient solution for applications needing clear, high-quality visuals. Utilizing OLED technology, it offers superior contrast, low power usage, and wide viewing angles. It is ideal for use in wearables, low-power embedded systems, and DIY projects. The SSD1306 driver and I2C interface simplify communication with microcontrollers such as Arduino or Raspberry Pi. The display does not require a backlight, allowing it to produce deep blacks and save power.

Principle of Work:

OLED technology allows each pixel to emit its own light. This self-emissive property removes the need for a backlight and leads to higher contrast and power efficiency. The SSD1306 driver controls each pixel via I2C communication with the microcontroller.

Pinout of the Module:

OLED Display Pinout

  • VCC: Power input (3.3V to 5V DC)
  • GND: Ground connection
  • SCL: Serial Clock Line for I2C
  • SDA: Serial Data Line for I2C

Applications:

  • Wearables: Smartwatches, fitness bands, and health monitors
  • Home Automation: Display temperature, humidity, and other readings
  • Automotive: Dashboards, infotainment, and navigation systems
  • Medical Devices: ECG monitors, pulse oximeters, glucose meters
  • Industrial Automation: Control panels, robotic systems, data displays

Circuit Diagram:

OLED Display Circuit

Library Installation:

  1. Open the Arduino IDE
  2. Navigate to Sketch > Include Library > Manage Libraries...
  3. Search for u8glib in the Library Manager
  4. Install the official U8glib library by olikraus
  5. (Optional) Restart the IDE to ensure the library is loaded

Example Arduino Code:

#include "U8glib.h"

U8GLIB_SSD1306_128X64 u8g(U8G_I2C_OPT_NO_ACK);  // Initialize OLED display

void setup() {
  u8g.begin();  // Start the OLED
}

void loop() {
  u8g.firstPage();
  do {
    u8g.setFont(u8g_font_6x10);
    u8g.drawStr(0, 20, "Techmaze.ae");
    u8g.drawCircle(64, 32, 20);
  } while(u8g.nextPage());
}

Technical Details:

  • Display Type: OLED (Organic Light-Emitting Diode)
  • Size: 1.3 inch
  • Resolution: 128 x 64 pixels
  • Viewing Angle: 160°
  • Interface: I2C
  • Driver IC: SSD1306
  • Supply Voltage: 3.3V to 5V DC
  • Power Consumption: ~20mA
  • Operating Temperature: -40°C to 85°C
  • Dimensions: 35.5mm x 34.0mm x 4.0mm
  • Weight: 5g

Comparisons with LED Displays:

  1. Technology: OLEDs are self-emissive; LEDs use backlighting
  2. Power: OLEDs consume less power due to no backlight
  3. Blacks: OLEDs show true blacks; LEDs do not
  4. Viewing Angle: OLEDs offer wider viewing angles
  5. Refresh Rate: OLEDs have faster refresh rates
  6. Cost: OLEDs are more expensive than standard LED displays