---
product_id: 343656670
title: "MakerFocus 4pcs OLED Display Module I2C IIC 128X64 0.96 Inch Display Module SSD1315 Yellow Blue Two-Color Display with Pins for Arduino UNO R3 STM32 Raspberry Pi 5/4B/3B+/3B/2B/Zero"
brand: "makerfocus"
price: "S/.2"
currency: PEN
in_stock: true
reviews_count: 7
url: https://www.desertcart.pe/products/343656670-makerfocus-4pcs-oled-display-module-i2c-iic-128x64-0-96
store_origin: PE
region: Peru
---

# Self-luminous display 128x64 pixels Changeable IIC address MakerFocus 4pcs OLED Display Module I2C IIC 128X64 0.96 Inch Display Module SSD1315 Yellow Blue Two-Color Display with Pins for Arduino UNO R3 STM32 Raspberry Pi 5/4B/3B+/3B/2B/Zero

**Brand:** makerfocus
**Price:** S/.2
**Availability:** ✅ In Stock

## Summary

> ✨ Illuminate Your Ideas with OLED Magic!

## Quick Answers

- **What is this?** MakerFocus 4pcs OLED Display Module I2C IIC 128X64 0.96 Inch Display Module SSD1315 Yellow Blue Two-Color Display with Pins for Arduino UNO R3 STM32 Raspberry Pi 5/4B/3B+/3B/2B/Zero by makerfocus
- **How much does it cost?** S/.2 with free shipping
- **Is it available?** Yes, in stock and ready to ship
- **Where can I buy it?** [www.desertcart.pe](https://www.desertcart.pe/products/343656670-makerfocus-4pcs-oled-display-module-i2c-iic-128x64-0-96)

## Best For

- makerfocus enthusiasts

## Why This Product

- Trusted makerfocus brand quality
- Free international shipping included
- Worldwide delivery with tracking
- 15-day hassle-free returns

## Key Features

- • **Crisp Clarity:** Experience super high contrast and readability, even for tiny fonts.
- • **Easy Installation:** Four square holes for hassle-free mounting.
- • **Custom Font Creation:** Design your own fonts with user-friendly software.
- • **Elevate Your Projects:** Transform your micro-controller projects with stunning visuals!
- • **Versatile Compatibility:** Seamlessly integrates with Raspberry Pi, Arduino, and more.

## Overview

The MakerFocus 4pcs OLED Display Module features a 128x64 pixel resolution, self-luminous display, and is compatible with various microcontrollers including Raspberry Pi and Arduino. It allows for customizable font creation and easy installation, making it a versatile choice for tech enthusiasts.

## Description



## Images

![MakerFocus 4pcs OLED Display Module I2C IIC 128X64 0.96 Inch Display Module SSD1315 Yellow Blue Two-Color Display with Pins for Arduino UNO R3 STM32 Raspberry Pi 5/4B/3B+/3B/2B/Zero - Image 1](https://m.media-amazon.com/images/I/715ZHkCz9IL.jpg)
![MakerFocus 4pcs OLED Display Module I2C IIC 128X64 0.96 Inch Display Module SSD1315 Yellow Blue Two-Color Display with Pins for Arduino UNO R3 STM32 Raspberry Pi 5/4B/3B+/3B/2B/Zero - Image 2](https://m.media-amazon.com/images/I/71Lfy5EUvqL.jpg)
![MakerFocus 4pcs OLED Display Module I2C IIC 128X64 0.96 Inch Display Module SSD1315 Yellow Blue Two-Color Display with Pins for Arduino UNO R3 STM32 Raspberry Pi 5/4B/3B+/3B/2B/Zero - Image 3](https://m.media-amazon.com/images/I/71IJVasvjhL.jpg)
![MakerFocus 4pcs OLED Display Module I2C IIC 128X64 0.96 Inch Display Module SSD1315 Yellow Blue Two-Color Display with Pins for Arduino UNO R3 STM32 Raspberry Pi 5/4B/3B+/3B/2B/Zero - Image 4](https://m.media-amazon.com/images/I/711v7OwQuQL.jpg)
![MakerFocus 4pcs OLED Display Module I2C IIC 128X64 0.96 Inch Display Module SSD1315 Yellow Blue Two-Color Display with Pins for Arduino UNO R3 STM32 Raspberry Pi 5/4B/3B+/3B/2B/Zero - Image 5](https://m.media-amazon.com/images/I/71ZSOLHwQeL.jpg)

## Customer Reviews

### ⭐⭐⭐⭐⭐ Works great! Great value! Tested with ESP8266 NodeMCU & Arduino IDE
*by F***A on September 30, 2023*

Works great. Great value for money.Lack of documentation so docked one star on Ease of use.The sketch that finally made it work for me.Screen has two colors but they are fixed so it's really a monochrome screen.Small section on top is yellow and rest is blue.Need to solder the pins ... easy if you know your way around a soldering iron. Took less than 2 minutes.Adafruit library and example sketch are a great place to start. My working sketch for this OLED display is shown below. Hopefully, others find it useful.// Import the Adafruit 1306 library and select your board on the Arduino IDE// The sketch below worked for me// Minimal sketch to display "Hello World" on OLED SSD1315 working with ESP8266 NodeMCU// Sketch for Arduino or other boards would be quite similar#include <SPI.h>#include <Wire.h>#include <Adafruit_GFX.h>#include <Adafruit_SSD1306.h>#define SCREEN_WIDTH 128 /// OLED display width, in pixels#define SCREEN_HEIGHT 64 /// OLED display height, in pixels#define OLED_RESET -1 ///-1 => no reset on 4 pin SSD1315 OLEDAdafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);/// define screen params#define I2C_SDA 4 /// ESP8266 NodeMCU SDA pin GPIO4 = D2#define I2C_SCL 5 /// ESP8266 NodeMCU SCL pin GPIO5 = D1#define SCREEN_ADDRESS 0x3C /// 0x3C for SSD1315 OLEDvoid setup() {Serial.begin(9600); /// for debug messages, I don't have anyWire.begin(I2C_SDA, I2C_SCL); /// #2 Identify SDA & SLC pins for your boarddisplay.begin(SSD1306_SWITCHCAPVCC, SCREEN_ADDRESS); /// Mode + Screen Addressdelay(200); /// time for board to initialize?display.clearDisplay(); ///display.setTextColor(WHITE); ///display.setTextSize(1); ///display.setCursor(10, 30); ///display.print("Hello World!"); ///display.display(); /// needed to actually display the messagedelay(1000); /// time for message to stay updisplay.clearDisplay();}void loop() {}

### ⭐⭐⭐⭐⭐ Overall great
*by U***Y on July 28, 2024*

SoftwareOpened up Arduino IDE(2.3.2)Clicked Library Manager Icon(3rd down from top left)Type SSD1306 and installed Adafruit SSD1306 library by Adafruit(2.5.10)Select yes for also installing Adafruit GFX library(1.11.10) w/SSD1306 libraryRestart IDE and open example code by clicking File>Examples>Adafruit SSD1306>128x64.i2cHardwareArduino Nano ESP32Screen GND > Nano GNDScreen VCC > Nano 5VScreen SCL > Nano A5Screen SDA > Nano A4AdjustmentsThe code comments on line 35 mention a screen address of 0x3D(default) for 128x64 resolution. I had to change this address to 0x3C for my screen to come alive.Final ThoughtsNice but it seems I also didn't pay enough attention, the entire screen isn't two colors. I would say the top 3rd is yellow and the bottom 2/3rds is blue. There is a thin black line separating the two sections.

### ⭐⭐⭐⭐⭐ Works w std SSD1306 Driver! - Tips to avoid frustration
*by B***O on August 25, 2021*

Had lots of trouble getting this to work w micropython SSD driver. Screen just stayed dark, even though i2c.scan recognized device id 0x3c. I assumed it was the SSD1315 that was incompatible with SSD1306 initialization code (read on - it wasn't!). Finally abandoned it and went with a smaller SSD1306-based display. When I finally got the ssd1306 working, switched back to this display, and it worked with the exact same code! Simple, easy, nice bright display. Yellow on top 8 pixels is a bit hard to read. Oh well. I'll but more of these, I like them. Simple script that works:from machine import Pin, I2Cfrom ssd1306 import SSD1306_I2Cdisplay = SSD1306_I2C(width=128, height=64, i2c=I2C(1, freq=100_000), addr=0x3C, external_vcc=False)display.init_display()display.contrast(255)display.poweron()display.text("Hello World", 0,0,1)display.show()

---

## Why Shop on Desertcart?

- 🛒 **Trusted by 1.3+ Million Shoppers** — Serving international shoppers since 2016
- 🌍 **Shop Globally** — Access 737+ million products across 21 categories
- 💰 **No Hidden Fees** — All customs, duties, and taxes included in the price
- 🔄 **15-Day Free Returns** — Hassle-free returns (30 days for PRO members)
- 🔒 **Secure Payments** — Trusted payment options with buyer protection
- ⭐ **TrustPilot Rated 4.5/5** — Based on 8,000+ happy customer reviews

**Shop now:** [https://www.desertcart.pe/products/343656670-makerfocus-4pcs-oled-display-module-i2c-iic-128x64-0-96](https://www.desertcart.pe/products/343656670-makerfocus-4pcs-oled-display-module-i2c-iic-128x64-0-96)

---

*Product available on Desertcart Peru*
*Store origin: PE*
*Last updated: 2026-05-16*