MakerFocus 2pcs I2C OLED Display Module 0.91 Inch I2C SSD1306 OLED Display Module White I2C OLED Screen Driver DC 3.3V~5V for Arduino ESP8266 ESP32 STM32
Thumbnail 1Thumbnail 2Thumbnail 3Thumbnail 4Thumbnail 5Thumbnail 6Thumbnail 7

MakerFocus 2pcs I2C OLED Display Module 0.91 Inch I2C SSD1306 OLED Display Module White I2C OLED Screen Driver DC 3.3V~5V for Arduino ESP8266 ESP32 STM32

4.5/5
Product ID: 60860107
Secure Transaction

Details

  • Brand
    MakerFocus
  • CPU Model
    None
  • CPU Speed
    3.4
  • Graphics Card Description
    Dedicated
  • Specific Uses For Product
    DIY Projects
  • Personal computer design type
    Computer Tower
šŸ’”Self-luminous tech
šŸ”‹0.06W power
šŸ–„ļø128x32 pixels

Description

Illuminate Your Projects! šŸ’”

  • ENERGY EFFICIENT - Low power consumption at just 0.06W, perfect for long-term projects.
  • BRILLIANT CLARITY - Experience stunning visuals with a 128x32 pixel resolution.
  • WIDE VIEWING ANGLE - Enjoy clear visibility from any angle with over 160° viewing.
  • CUSTOM FONT CREATION - Design your own fonts with ease using font generation software.
  • VERSATILE COMPATIBILITY - Seamlessly integrates with Arduino, Raspberry Pi, and more.

The MakerFocus 0.91 Inch I2C OLED Display Module is a high-contrast, self-luminous screen with a resolution of 128x32 pixels. Compatible with various development boards like Arduino and Raspberry Pi, it allows for custom font creation and operates efficiently at low power. With a wide viewing angle and a robust temperature range, this display module is perfect for any tech enthusiast looking to enhance their projects.

Specifications

Standing screen display size0.91 Inches
Screen Resolution128 x 32
Max Screen Resolution128 x 32
Processor3.4 none
Hard DriveSSD
Card DescriptionDedicated
Wireless Type802.11abg
BrandMakerFocus
Series8541549353
Item model number8541549353
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
Computer Memory TypeDDR4 SDRAM
Hard Drive InterfaceSerial Attached SCSI
Voltage3.3 Volts

Reviews

4.5

All from verified purchases

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.

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!

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!

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..

R**S

Love em, nice and bright.

Grabbed these for a bunch of rack mounted pis and they have been great. Easy to use, crisp display and has been doing great. Will be ordering another round for the next set of pis being placed in.

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

Reema J.

Perfect platform for hard-to-find items. Delivery was prompt.

1 month ago

Vikram D.

The MOLLE sheath is of exceptional quality. Very happy with my purchase.

2 weeks ago

Shop Global, Save with Desertcart
Value for Money
Competitive prices on a vast range of products
Shop Globally
Serving over 300 million shoppers across more than 200 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.
€ 15.00

Duties & taxes incl.

Irelandstore
1
Free Returns

30 daysfor PRO membership users

15 dayswithout membership

Secure Transaction

Trustpilot

TrustScore 4.5 | 7,300+ reviews

Sneha T.

Received my product in pristine condition. Great service overall.

1 month ago

Khalid Z.

Great experience from order to delivery. Highly recommended!

1 week ago

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