MakerFocus 2pcs 0.91 Inch I2C IIC OLED Display Module 128 x 32 Pixel SSD1306 Driver Self-Luminous Display Board for Arduino/Raspberry Pi/ESP32 (White)
Thumbnail 1Thumbnail 2Thumbnail 3Thumbnail 4Thumbnail 5Thumbnail 6Thumbnail 7

MakerFocus 2pcs 0.91 Inch I2C IIC OLED Display Module 128 x 32 Pixel SSD1306 Driver Self-Luminous Display Board for Arduino/Raspberry Pi/ESP32 (White)

Product ID: 60860107
Secure Transaction

Details

  • Brand
    MakerFocus
  • Model Name
    0.91 Inch I2C
  • CPU Model
    None
  • CPU Speed
    3.4
  • Connectivity Technology
    I2C
Ultra low 0.06W power consumption
🔆128x32 crisp OLED resolution
🔗I2C interface for seamless integration

Description

✨ Elevate your DIY projects with crisp, power-smart OLED brilliance!

  • COMPACT YET IMPACTFUL - Tiny 0.91-inch screen packs a punch in a sleek 38x12mm form factor
  • POWER SAVVY PERFORMANCE - Consumes just 0.06W, perfect for energy-conscious projects
  • PLUG PLAY COMPATIBILITY - Effortlessly pairs with Arduino, Raspberry Pi, ESP32, STM32 & more
  • VIVID SELF LUMINOUS DISPLAY - No backlight needed—brilliant clarity with high contrast and >160° viewing angle
  • CUSTOMIZABLE FONTS GRAPHICS - Create your own fonts with font generation software—total design freedom

The MakerFocus 0.91-inch OLED Display Module features a sharp 128x32 pixel resolution driven by the SSD1306 chip, delivering bright, self-illuminated visuals without backlight. Designed for low power consumption (0.06W) and wide compatibility with popular development boards like Arduino, Raspberry Pi, and ESP32, this compact display offers customizable fonts and graphics via I2C interface, making it an essential upgrade for professional-grade embedded projects.

Specifications

Standing screen display size0.91 Inches
Screen Resolution128 x 32
Processor3.4 none
RAMLPDDR3
Hard DriveSolid State Hard Drive
Card DescriptionDedicated
Wireless Type802.11abg
BrandMakerFocus
Series0.91 Inch I2C OLED Display Module
Item model number8541549353
Operating SystemLinux
Item Weight0.32 ounces
Product Dimensions1.5 x 2.76 x 0.39 inches
Item Dimensions LxWxH1.5 x 2.76 x 0.39 inches
Colorwhite
Processor BrandAMD
Number of Processors1
Computer Memory TypeDDR4 SDRAM
Voltage3.3 Volts
ManufacturerMakerFocus
ASINB079BN2J8V
Is Discontinued By ManufacturerNo
Date First AvailableJanuary 25, 2018

Reviews

H**S

Really Wonderful little displays!

These things are tiny! That worked out well for me since the projects I was making were suppose to essentially stay out of the way if all went well. I used the Adafruit SSD 1306 Libraries and they worked great. They are low power and bright.For the adafruit library examles, they really are over the top. There is no "hello world" essentially, so just do a google search for a hello world example for the libraries to get a basic starting point. Also, to rotate the display 180 Degrees, put in display.setRotation(2); in the setup. Basic usage for those libraries are..display.display();display.clearDisplay();display.setTextSize(1-3);display.setCursor(0,0); // origin of textdisplay.print("blah");display.println("-appended to last word blah, then new line");As for the hardware, the displays are nice and small. If you think of your breadboard, they are 4 rows high, then about 12 slots wide. (That's the entire board.) Voltage range is impressive and seems to operate at lower than 3.3, but I'm running it on 4.5v and there are no problems. (Basically, 5v from the wall but through a diode on the arduino). It takes around 5ma. With a watch dog timer and adjustment I bet you could get a whole pro mini project to run at under 3ma standby while keeping the display going. Refresh time on the display is very fast and cameras don't pick up any multiplexing/flicker. They did not come with headers, but the plated through holes are very well done and take solder well. The holes are pretty snug, which means it's strong. It will be hard to desolder these after, so google some tricks on removing header pins to make your life easier!If this was a useful review to you, please give it a thumbs up! :D I think a lot of people had these questions..

S**I

Bright and high contrast displays

Displays work well as expected even from a 3V power source. The image on display is bright and has high contrast. I use them for small projects like the one on photo.

D**L

Affordable monochrome display

These displays are sold under a number of brand names. The model number is MC091GX if you want to look up physical dimensions or a datasheet for integration purposes.I'm using a relatively uncommon ESP32 devkit with these, but I was able to get them working reliably after figuring out the correct way to increase the I2C timeout in ESP-IDF for my particular ESP32 variant. The SSD1306 display driver is widely supported, so this should be very easy to integrate (general I2C issues aside).For people who want a similar display with a higher resolution, the MC096GX is 0.96" and has a 128x64 resolution, and the cost difference is negligible.

S**E

Only if you know what you're doing

Update 1:I am in the middle of investigating why i'm still having problems with this device. Since posting, I have discovered that, at least with the NodeMCU8266, pull-up resistors may not be required, contrary to my initial review. (Indeed, the schematic diagram in the picture list seems to indicate that they are built in.) I have confirmed that the device can also work with Arduino Uno, so it appears to be both 3v3 and 5v compliant, as described. However, the Uno only works if a 4.7kOhm resistor pulls-up the SCL line. Odd.On the other hand, I cannot get it to work reliably, and it is not certain that this display module is at fault. Time to pull out the logic analyzer and see what is going on.I am provisionally changing my rating to 4 stars, because a) it may work as expected and b) the vendor has been extremely helpful trying to resolve the issue amicably. They are good, trustworthy people. (As an aside, they have indicated that they have requested their supplier to include headers, but no luck. Not a critical point in any case.)***I'm going with 2.4 stars here. I received two units - they both work.1) I understand the frustration of R.Arnold's review. However, the Adafruit library does work in sample code ( ssd1306_128x32_i2c ). Knowing I2C pretty well is required though. I learned the hard way. Had an 8266 (3.3v) as MCU plus an Adafruit temp/humidity sensor and this display on the I2C bus. I knew that I2C requires pull-up resistors on SDA/SCL, but the sensor has builtin pull-ups, and theoretically you only need one set. The sensor communicated fine and I was able to detect both devices using the I2C scanner code in the Adafruit library examples. No signs of life from the display, though, until I added 2 resistors from 3.3v across to SDA and SCL - one apiece of course. Yeah! (I used 4.7kOhm - YMMV.) Don't understand why the display's I2C address was detectable on the bus, but didn't actually display anything without the additional resistors. Still, including a rough schematic in the package would help speed debugging, especially for those new to I2C.(BTW, the reset pin referenced in the Adafruit library appears to be optional and can be changed in the source from "4" to "LED_BUILTIN", at least on an 8266.)2) I don't find the text to be very legible without strong readers. It is crisp, but very very small.3) There are reasonable economic (seller) and utility (buyer) reasons for not pre-soldering headers. But would it break the bank to toss in a couple 4-pinners?4) There are no mounting holes!

A**M

Clear screen

Started playing around with Arduino and wanted to try some screens. These are a great form factor and work well with the included libraries. Much clearer than they look on my picture taken in the dark! Very happy with them!

M**G

Cheap Board!

I'm always concerned buying displays, sensors, or other components from unknown suppliers or not directly from the manufacturer. It can be a gamble if the documentation is correct. I'm pleased to report that it took all of 5 minutes to get this setup with a PlatformIO project in VSCode!The display is nice and bright. In testing I'm running it from the 3.3v line on an Arduino Nano.As of Jan 2024 the board I received worked immediately with the Adafruit_SSD1306 and Adafruit_GFX libraries on I2C with address 0x3C (the default in the lib when using the 128x32 display example). I was able to use the example code from the Adafruit_SSD1306 library published to an Arduino Nano and successfully see the test sequences. Very happy with the out of box result and am really thinking it will be nice in my project!

Common Questions

Yes, all products are sourced directly from authorized retailers in the US, UK, UAE and India. We maintain strict quality control processes and verify each product before shipping. All items come with applicable manufacturer warranties and are covered by our standard return policy.
Delivery times vary by destination country, typically ranging from 3-9 business days. Each order is fully trackable through our system. We handle all customs clearance and use reliable courier partners for last-mile delivery. You'll receive regular updates about your order status via email and our app.
Desertcart is an international e-commerce platform operating since 2014. We securely process thousands of orders globally each day. Every product goes through our quality verification process before delivery, and we provide end-to-end order tracking, 24/7 customer support, and a comprehensive returns policy to ensure a safe shopping experience.
Our prices include the product cost, international shipping, import duties, customs clearance, and local delivery charges. We handle all customs and import procedures, ensuring there are no hidden fees upon delivery. PRO members receive additional benefits including free shipping.

Trustpilot

TrustScore 4.5 | 7,300+ reviews

Anjali K.

The product quality is outstanding. Exactly what I needed for my work.

1 month ago

Ali H.

Fast shipping and excellent packaging. The Leatherman tool feels very premium and sturdy.

1 day ago

Shop Global, Save with Desertcart
Value for Money
Competitive prices on a vast range of products
Shop Globally
Serving millions of shoppers across more than 100 countries
Enhanced Protection
Trusted payment options loved by worldwide shoppers
Customer Assurance
Trusted payment options loved by worldwide shoppers.
Desertcart App
Shop on the go, anytime, anywhere.
฿1242

Duties & taxes incl.

Thailandstore
1
Free Returns

30 daysfor PRO membership users

15 dayswithout membership

Secure Transaction

Ask AI about this Product

Trustpilot

TrustScore 4.5 | 7,300+ reviews

Zainab N.

Fantastic and great service. Shipping was faster than expected.

1 week ago

Neha S.

Excellent communication throughout the order process. Product is perfect.

2 weeks ago

Makerfocus 2pcs 0 91 Inch I2c Iic Oled Display Module | Desertcart Thailand