β 13 min readThe Next Generation of High-Performance FPGAs: Tang Mega 138K
Confused by the sheer number of FPGA boards on the market? If you are looking for serious horsepowerβPCIe acceleration, high-speed transceivers, and e
Read Article β| Bulk Pricing | ||
|---|---|---|
| QTY | Unit Price(Inlc. GST) | |
| 50+ | βΉ322.42 βΉ 273.24 + 49.18 GST | |
| 100+ | βΉ319.13 βΉ 270.45 + 48.68 GST | |
| 150+ | βΉ315.84 βΉ 267.66 + 48.18 GST | |
| 200+ | βΉ309.26 βΉ 262.08 + 47.17 GST | |
Give your project a beautiful visual interface with this 1.3" OLED module. Features a crisp 128x64 resolution, vibrant blue pixels, and infinite contrast. Uses a simple 4-pin I2C interface (VCC, GND, SDA, SCK) and the reliable SH1106 controller.
Bigger, Bolder Graphics If you have ever squinted at a tiny 0.96" screen trying to read sensor data, the 1.3" OLED is the perfect solution. It offers the exact same 128x64 pixel resolution, but stretches it across a noticeably larger physical panel. Because it uses OLED (Organic Light Emitting Diode) technology, it does not require a bulky backlight. Each individual blue pixel generates its own light, resulting in a completely pitch-black background, infinite contrast ratios, and wide viewing angles that standard LCDs simply cannot match.
Simple 4-Wire I2C Integration Wiring up displays can often eat up all your microcontroller's digital pins. This module uses the highly efficient I2C communication protocol. Looking at the top header, you only have four pins to connect: VCC, GND, SCK (Clock), and SDA (Data). This means you can control all 8,192 pixels using just two data pins on your Arduino, leaving the rest of your board free for sensors, motors, and relays.
The SH1106 Controller Flipping the board over reveals its architecture. Unlike smaller screens that use the SSD1306 chip, this 1.3" panel is driven by the SH1106 controller. This is an important distinction for your code! The SH1106 is slightly more advanced, managing an internal RAM of 132x64 (even though the physical screen is 128x64). By using popular libraries like U8g2 or Adafruit_SH110X, you can easily draw text, geometric shapes, and even custom bitmap animations.
Screen Size: 1.3 Inches (Diagonal)
Resolution: 128 x 64 Pixels
Display Technology: OLED
Pixel Color: Blue
Driver IC: SH1106
Interface: I2C (IIC)
Operating Voltage: 3.3V to 5.0V DC
Active Area: Approx. 29.4mm x 14.7mm
Pinout: 1-VCC, 2-GND, 3-SCK/SCL, 4-SDA
Downloads:
DIY Smartwatches: The low power consumption and high contrast make this the perfect primary display for wearable, ESP32-based custom smartwatches.
Environmental Dashboards: Displaying real-time temperature, humidity, and air quality metrics from a BME280 sensor in a beautiful, easy-to-read font.
Audio Visualizers: Creating a miniature, real-time spectrum analyzer or VU meter for custom Bluetooth speaker builds.
Unlock New Capabilities (Project Evolution)
The Mini Retro Console: Don't just display text; display games! Evolve your project by pairing this 1.3" OLED with an Arduino Nano, a tiny piezo buzzer, and a few tactile pushbuttons. The U8g2 library is fast enough to handle high-framerate refreshes. With a little coding, you can program fully playable clones of classic games like Pong, Tetris, or Space Invaders right on your breadboard!
1 x 1.3" 128x64 OLED Blue Display Module (4-Pin I2C) (Note: The module comes with pre-soldered male header pins. Remember to peel off the clear protective film using the blue tab before use).


The title says "SPI I2C", but there are only 4 pins. Which is it? This specific module is strictly I2C. A true SPI OLED requires 6 or 7 pins. We group the terms in titles to help makers find the listing, but rest assured, you only need 4 wires (VCC, GND, SCK, SDA) to run this!
What is the difference between this and the 0.96" OLED? The primary differences are the physical size (1.3" is much larger and easier to read) and the controller chip. The 0.96" uses the SSD1306, while this 1.3" uses the SH1106.
Will my SSD1306 Arduino code work on this screen? Mostly, but not perfectly. Because the SH1106 has a slightly different memory map, using an SSD1306 library often results in the image being shifted 2 pixels to the right, leaving "snow" on the edge. You should use a dedicated SH1106 library.
What library do you recommend for Arduino? We highly recommend the U8g2 library for complex fonts and graphics, or the Adafruit_SH110X library for general-purpose drawing.
What voltage does it require? It features an onboard voltage regulator, meaning it works perfectly and safely on both 3.3V and 5.0V systems.
Do I need a backlight for this? No. OLED stands for Organic Light Emitting Diode. Every individual blue pixel generates its own light, so no backlight is needed.
Why is the screen completely black when it's off? Because there is no backlight panel behind the glass, the screen blends perfectly into the black PCB when the pixels are unpowered.
What does SCK and SDA stand for? SCK (sometimes labeled SCL) is the Serial Clock line. SDA is the Serial Data line. These are the two standard communication pins for the I2C protocol.
How do I wire this to an Arduino Uno? Connect VCC to 5V, GND to GND, SDA to Analog Pin 4 (A4), and SCK to Analog Pin 5 (A5).
What is the default I2C address for this module? The default I2C hex address is typically 0x3C.
Can I run two of these screens on the same Arduino? Yes, but they cannot share the exact same I2C address. Look at the resistors on the back of the board; by desoldering and moving a specific resistor, you can change the address from 0x3C to 0x3D, allowing two screens on one bus.
Will this work with a 3.3V Raspberry Pi? Yes, absolutely. It handles 3.3V logic and power perfectly.
Does it consume a lot of battery power? No, OLEDs are incredibly power-efficient. They only draw current for the pixels that are actually lit up. A typical text display might only draw 10mA to 20mA.
What is the blue tab on the side of the screen? That is a pull-tab attached to a clear, protective plastic film. You peel it off before mounting the screen in your project to reveal the pristine glass underneath.
Can it display different colors? No, this is a monochrome display. Every pixel is blue.
Can it display photos? Yes! You can convert small black-and-white bitmap (.bmp) images into a byte array (using free online tools like "image2cpp") and draw them onto the screen using your code.
Is it susceptible to screen burn-in? Like all OLEDs, if you leave the exact same static text at maximum brightness on the screen for months at a time, those pixels will eventually dim faster than the rest, causing burn-in.
How can I prevent burn-in? If your project runs 24/7, program a screensaver into your code. Either have the text bounce around the screen every few minutes, or program the display to turn off after 60 seconds of inactivity.
Are the pins pre-soldered? Yes, the four standard 2.54mm male header pins come pre-soldered to the board, making it breadboard-ready out of the box.
Why isn't my screen turning on? First, double-check your wiring (swapping SDA and SCK is the most common mistake). Second, ensure your code is using the correct I2C address (0x3C). You can run an "I2C Scanner" sketch on your Arduino to verify the board is communicating.
| Technical Details | Arduino Library: Adafruit_SH1106 by wonho-maker |
|---|---|
| Display Technology | Character / Graphic LCD (Monochrome) |
| Communication Interface | I2C |
| Screen Size (Diagonal) | Small (1.5 - 3.4 Inch) |
Probots sells every Electronics Part for your next Project. You can order 10,000+ Electronic Parts Online - Arduino, Raspberry Pi, NodeMCU Development Boards, Sensors, Motors, Motor Drivers, SMPS, Plastic Enclosures etc in India directly on probots.co.in
We delivery electronics components and parts throughout India using standard couriers like Bluedart, Delhivery & India Post.
For order related queries contact -
Probots sells every Electronics Part for your next Project. You can order 10,000+ Electronic Parts Online - Arduino, Raspberry Pi, NodeMCU Development Boards, Sensors, Motors, Motor Drivers, SMPS, Plastic Enclosures etc in India directly on probots.co.in
We offer specialized services for Bulk, Wholesale & B2B Customers like discounted prices, additional shipping options, customised products, etc . Customer with large quantity & regular orders qualify for the specialised discounted rates.
We also offer dedicated sales team to assist you with the order process by providing sales quotations, PI, technical support for choosing products, etc.
Note: Business Orders are processed manually and usually take 1-3 days to process compared to placing the order directly on our website. Please plan your purchases accordingly.
Need Help?
For bulk enquiries contact us by -
Probots Electronics is highly regarded for its highly skilled team, offering expert guidance and knowledgeable support to ensure customers find the right components for their specific technical projects. Despite some concerns regarding delivery consistency, most clients report prompt and commendable service, highlighting the store's reliability and professional attitude toward customer care.
β 13 min readConfused by the sheer number of FPGA boards on the market? If you are looking for serious horsepowerβPCIe acceleration, high-speed transceivers, and e
Read Article β
β 20 min readVol. 31 | Fluid Dynamics for Silicon Brains You want to build an automated cocktail maker or a self-watering greenhouse, but your code is flawless and
Read Article β
β 9 min readWorkbench Vol. 24 π The Project Trifecta: 3 Builds to Start Today We don’t just stock parts; we curate ecosystems. This weekβs arrivals are desi
Read Article β