MakerFocus2pcs 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

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

4.5/5
Product ID: 60860107
Secure Transaction

Details

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

Description

✨ Elevate your DIY projects with crisp OLED clarity and ultra-low power magic!

  • DUAL PACK VALUE - Two 0.91-inch OLED modules included—double the innovation, double the impact.
  • PLUG PLAY COMPATIBILITY - Effortlessly pairs with Arduino, Raspberry Pi, ESP32, and more for instant prototyping power.
  • ENERGY EFFICIENT BRILLIANCE - Consumes just 0.06W, keeping your projects sleek and battery-friendly.
  • VIVID SELF LUMINOUS DISPLAY - No backlight needed—enjoy bright, high-contrast visuals that pop from every angle (>160°).
  • CUSTOMIZABLE FONTS GRAPHICS - Create your own fonts and graphics with font generation software—total creative freedom.

The MakerFocus 2-pack 0.91-inch OLED display modules feature a sharp 128x32 pixel resolution with SSD1306 drivers, delivering bright white visuals without backlighting. Designed for seamless I2C integration, these ultra-low power (0.06W) displays support Arduino, Raspberry Pi, ESP32, and more, offering customizable fonts and wide viewing angles (>160°) 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
Series8541549353
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

4.5

All from verified purchases

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

Trustpilot

TrustScore 4.5 | 7,300+ reviews

Ali H.

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

1 day ago

Farhan Q.

The delivery time was excellent, and the packaging was secure.

2 months 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.
$111543

Duties & taxes incl.

Colombiastore
1
Free Shipping

with PRO Membership

Free Returns

30 daysfor PRO membership users

15 dayswithout membership

Secure Transaction

Trustpilot

TrustScore 4.5 | 7,300+ reviews

Imran F.

Very reliable shop with genuine products. Will definitely buy again!

2 weeks ago

Abdullah B.

Great price for an authentic product. Fast international shipping too!

3 weeks ago

Makerfocus2pcs 0 91 Inch I2c Iic Oled Display Module 128 | Desertcart Colombia