---
product_id: 274161201
title: "Frienda 5 Pieces 0.96 Inch OLED Module 12864 128x64 Driver IIC I2C Serial Self-Luminous Display Board Compatible with Arduino Raspberry PI (White)"
brand: "frienda"
price: "AR$4617"
currency: ARS
in_stock: false
reviews_count: 13
url: https://www.desertcart.com.ar/products/274161201-frienda-5-pieces-0-96-inch-oled-module-12864-128x64
store_origin: AR
region: Argentina
---

# 0.04W power 128x64 resolution I2C interface Frienda 5 Pieces 0.96 Inch OLED Module 12864 128x64 Driver IIC I2C Serial Self-Luminous Display Board Compatible with Arduino Raspberry PI (White)

**Brand:** frienda
**Price:** AR$4617
**Availability:** ❌ Out of Stock

## Summary

> Illuminate Your Ideas! 💡

## Quick Answers

- **What is this?** Frienda 5 Pieces 0.96 Inch OLED Module 12864 128x64 Driver IIC I2C Serial Self-Luminous Display Board Compatible with Arduino Raspberry PI (White) by frienda
- **How much does it cost?** AR$4617 with free shipping
- **Is it available?** Currently out of stock
- **Where can I buy it?** [www.desertcart.com.ar](https://www.desertcart.com.ar/products/274161201-frienda-5-pieces-0-96-inch-oled-module-12864-128x64)

## Best For

- frienda enthusiasts

## Why This Product

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

## Key Features

- • **Vivid Clarity:** Experience stunning visuals with a resolution of 128x64 and a wide viewing angle of over 160 degrees.
- • **Energy Efficient:** Operate at just 0.04W, ensuring your projects are both powerful and eco-friendly.
- • **Compact & Powerful:** Transform your micro-controller projects with a sleek 0.96 inch OLED display.
- • **Custom Font Creation:** Unleash your creativity by designing your own fonts with user-friendly software.
- • **Versatile Compatibility:** Seamlessly integrates with Arduino, Raspberry Pi, and more for endless project possibilities.

## Overview

The Frienda 5 Pieces 0.96 Inch OLED Module is a compact, self-luminous display board with a resolution of 128x64, designed for compatibility with various microcontrollers including Arduino and Raspberry Pi. It features an I2C interface for easy connectivity and operates at low power consumption, making it ideal for innovative projects.

## Description



## Images

![Frienda 5 Pieces 0.96 Inch OLED Module 12864 128x64 Driver IIC I2C Serial Self-Luminous Display Board Compatible with Arduino Raspberry PI (White) - Image 1](https://m.media-amazon.com/images/I/71SS3VQCAtL.jpg)
![Frienda 5 Pieces 0.96 Inch OLED Module 12864 128x64 Driver IIC I2C Serial Self-Luminous Display Board Compatible with Arduino Raspberry PI (White) - Image 2](https://m.media-amazon.com/images/I/71NJc-nTtKL.jpg)
![Frienda 5 Pieces 0.96 Inch OLED Module 12864 128x64 Driver IIC I2C Serial Self-Luminous Display Board Compatible with Arduino Raspberry PI (White) - Image 3](https://m.media-amazon.com/images/I/71H09-f27RL.jpg)
![Frienda 5 Pieces 0.96 Inch OLED Module 12864 128x64 Driver IIC I2C Serial Self-Luminous Display Board Compatible with Arduino Raspberry PI (White) - Image 4](https://m.media-amazon.com/images/I/71dw+OMKySL.jpg)
![Frienda 5 Pieces 0.96 Inch OLED Module 12864 128x64 Driver IIC I2C Serial Self-Luminous Display Board Compatible with Arduino Raspberry PI (White) - Image 5](https://m.media-amazon.com/images/I/710RHtOTuhL.jpg)

## Customer Reviews

### ⭐⭐⭐⭐⭐ 5.0 out of 5 stars







  
  
    Display on a Raspberry PI PICO
  

*by M***N on Reviewed in the United Kingdom on 23 May 2021*

Put together a program to try out the display and some of the features of a PICO.# A thermometer using a SSD1306 display on a Raspberry PI PICO#  Wiring details#  SDA  ->  GP0#  SCL  ->  GP1#  VCC  ->  3V3_EN  3.3 Volts#  GND  ->  GND# Use the SSD1306 driver from#  https://github.com/stlehmann/micropython-ssd1306from machine import Pin, I2Cfrom ssd1306 import SSD1306_I2Cimport framebufimport utimeboardled = machine.Pin(25, machine.Pin.OUT)  # Defines the green LED which is on the PICO Board.# reads from Pico's temp sensor and converts it into a more manageable numbersensor_temp = machine.ADC(4)conversion_factor = 3.3 / (65535)high_temperature_limit = 22low_temperature_limit = 19WIDTH  = 128  # oled display widthHEIGHT = 64  # oled display heighti2c = I2C(0,sda=Pin(0), scl=Pin(1), freq=400000)  # Init I2C using , SCL=Pin(GP1), SDA=Pin(GP0), freq=400000print("I2C Address 0X3C  : "+hex(i2c.scan()[0]).upper()) # Display device address  - should be 0X3C for a SSD1306 display, look at the ssd1306 driverprint("I2C Configuration: "+str(i2c))  # Display I2C configoled = SSD1306_I2C(WIDTH, HEIGHT, i2c)  # Init oled display# Raspberry Pi logo as 32x32 bytearraybuffer = bytearray(b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00|?\x00\x01\x86@\x80\x01\x01\x80\x80\x01\x11\x88\x80\x01\x05\xa0\x80\x00\x83\xc1\x00\x00C\xe3\x00\x00~\xfc\x00\x00L'\x00\x00\x9c\x11\x00\x00\xbf\xfd\x00\x00\xe1\x87\x00\x01\xc1\x83\x80\x02A\x82@\x02A\x82@\x02\xc1\xc2@\x02\xf6>\xc0\x01\xfc=\x80\x01\x18\x18\x80\x01\x88\x10\x80\x00\x8c!\x00\x00\x87\xf1\x00\x00\x7f\xf6\x00\x008\x1c\x00\x00\x0c \x00\x00\x03\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00")# Load the raspberry pi logo into the framebuffer (the image is 32x32)fb = framebuf.FrameBuffer(buffer, 32, 32, framebuf.MONO_HLSB)# Clear the oled display in case it has junk on it.oled.fill(0)# Blit the image from the framebuffer to the oled displayoled.blit(fb, 96, 0)# Add some textoled.text("Raspberry Pi",5,5)oled.text("Pico",5,18)oled.text("SSD1306",5,36)oled.text("128 x 64",5,54)# update the oled display so the image & text is displayedoled.show()# waits for 5 seconds to dosplay the PI Logoutime.sleep(5)while True:  boardled.toggle()  #Change the onboard light  oled.fill(0) # Clear the display  oled.text("Temperature",5,5)  oled.text(" ",5,36) # Blank line 3  # the following two lines do some maths to convert the number from the temp sensor into celsius  reading = sensor_temp.read_u16() * conversion_factor  temperature = round(27 - (reading - 0.706) / 0.001721)  print("Temperature ",temperature)  oled.text(str(temperature) + " Degrees C ", 5,18)  if temperature >= high_temperature_limit:  oled.text("High Temperature",5,36)  print("High Temperature ",temperature)  if temperature < low_temperature_limit:  oled.text("Low Temperature",5,36)  print("Low Temperature ",temperature)  oled.show()  # waits for 5 seconds before reading the temperature again  utime.sleep(5)

### ⭐⭐⭐⭐⭐ 5.0 out of 5 stars







  
  
    Ignore the 1 Star Review!!
  

*by W***S on Reviewed in the United Kingdom on 25 March 2021*

Guy who wrote the 1 star review either got a different product (the image he posted of the back of the screen looks identical to the ones I got so unlikely....) or evidently didn't look at the devices as they each clearly show GND, VCC, SCL, SDA. Looking at his wiring he has these wired completely wrong.I am genuinely impressed with these, bought them as they were the best priced 5 pack I found and were priced well enough that I thought if one or two dont work I wont be bothered. However, I was pleasantly surprised that each screen worked, they all look great and can refresh much faster than the standard arduino LCD I was using. You can fairly easily learn to create your own images to display on these as they work brilliantly with the Adafruit SSD1306 library which can be installed from the arduino IDE (make sure to also install the GFX library when prompted). I got one of these caught on my jumper and threw it across the room into a recently empty coffee cup, rinsed it off with acetone after and despite a little crack on the bottom corner glass the screen still works perfectly.Finally, it is worth noting that each screen has the same i2c address (0x3C) and so cannot easily be connected at the same time as one another for more than one screen. To get around this you could buy an i2c multiplexer or as long as youre confident in your soldering skills, move the 4.7kohm resistor on the back under the label "IIC Address Select" to the other jumper. This is a little bit fiddly however, doing so will change the devices address to 0x3D, allowing you to connect two at once!Overall worth the money, they are fragile as they are so small with a glass screen so be careful, I only needed two, but at this price I'm gonna have to come up with some more projects to make use of the rest as they are so fun to work with!

### ⭐⭐⭐⭐ 4.0 out of 5 stars







  
  
    Damaged in transit...
  

*by S***Y on Reviewed in the United Kingdom on 19 June 2022*

These units were not individually wrapped so had one out of 5 with a couple of capacitors knocked off which when repaired worked fine.....so would recommend a tad more protection before shipping......:-)

---

## 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.com.ar/products/274161201-frienda-5-pieces-0-96-inch-oled-module-12864-128x64](https://www.desertcart.com.ar/products/274161201-frienda-5-pieces-0-96-inch-oled-module-12864-128x64)

---

*Product available on Desertcart Argentina*
*Store origin: AR*
*Last updated: 2026-05-24*