

















5 Pieces I2C Display Module 0.91 Inch I2C OLED Display Module Blue I2C OLED Screen Driver DC 3.3V~5V(Blue Display Color)
-
Gregory A. Mccoy
> 24 hourThese are great value. Just be aware they are very small. Until you get one in your hand, its hard to convey how diminutive they are. Fortunately, they are very crisp and bright
-
Johnnie N.
> 24 hourAfter some experimenting I came up with the following to use this with the Seeeduino XIAO in PlatformIO. Display GND --> XIAO GND Display VCC --> XIAO 3V3 (not 5V!) Display SDA --> XIAO SDA Display SCL --> XIAO SCL library used: lib_deps = olikraus/U8g2@^2.28.8 example main.cpp with some comments added: #include <Arduino.h> #include <U8x8lib.h> U8X8_SSD1306_128X32_UNIVISION_HW_I2C u8x8(/* reset=*/ U8X8_PIN_NONE); void setup(void) { u8x8.begin(); u8x8.setFlipMode(1); // set number from 1 to 3, the screen word will rotary 180 } void loop(void) { u8x8.setFont(u8x8_font_chroma48medium8_r); u8x8.setCursor(0, 0); // char row, col - not pixel u8x8.println(===============); // if string too long it wraps and flickers u8x8.println( Hello,); // println() advances to next row u8x8.println( World!); u8x8.println( ===============); u8x8.println( test test test=); // <- this will not be shown on the 4 line screen } Since all I am looking for in this display is a simple character output this library will work fine for me. I tried the Adafruit and the SeeedStudio OLED libraries and I assume I never got the device type correct for a few frustrating hours of trial and error and error. I was also able to get the graphics library to work on this using the following constructor: #include <U8g2lib.h> U8G2_SSD1306_128X32_UNIVISION_F_HW_I2C u8g2(U8G2_R0, U8X8_PIN_NONE);
-
craftieone
> 24 hourI received these two days ago. The order was filled very quickly and the packaging was very good. There was no visible damage to the box and the displays were wrapped in bubble wrap. Unfortunately only two of the five displays worked. The first display I tried would not work and I tried another and it worked. I contacted Amazon after I completed the testing and explained the problem. The agent I chatted (Crystal) with was very professional and agreed to send out a replacement of another 5 displays. The replacements arrived the next day. Unfortunately only two of the five replacements worked. I now have 10 displays but only four are functional. Very disappointing. The service from Amazon was outstanding. The product is very disappointing and I would not recommend.
-
William Parish
> 24 hourThis will work nicely if I stack my pis in a cluster, since the height is about what Id have between pis anyway. Took a bit of fiddling to get the adafruit library to install, and as you can see in the image some extra control characters display from the example, but when I use it Ill make sure the text is more relevant to what I want. I had to turn down the contract on the picture because its a bright little thing, and was washing out the picture otherwise. I didnt mind not having the headers installed. While headers are nice at this breadboard stage, the other three I may solder wires to, and just have them end in plugs I can attach to the i2c bus. I think it makes sense for a bulk seller like this to omit the headers. Finding the address was trivial, but I couldnt find the manual referenced in the description. Turned out a few minutes on google got me the right instructions for a Pi though. Thats the great thing about the pi is the community support. Id be happy to buy them again if I found a need for more than 5 (cluster expansion maybe?).
-
Kevin
> 24 hournot worth get something else trust
-
Maverick
> 24 hourThis I2C Display Module work with no problems for the Arduino project I was working on. I personally like the Blue color LED it was easier for myself to read in any of the lighted conditions I was using this module in. There is plenty of online help and libraries for this unit just make sure you have the correct numbers for this display module when searching.
-
Peter Wicks
> 24 hourI am using an ESP8266 with ESPHome. This was very easy to wire up and configure. ESPHome has great documentation on their website on how to setup font sizes, and to write values/images.
-
...^.^...
> 24 hourWorked well. The example code in Arduino IDE for the Adafruit SSD1306 Library worked and provided a start.
-
John P. Swails
> 24 hour3 were duds. 2 worked with ssd adafruit. Thanks to good comments here that led me to finding right drivers
-
M. Douglass
> 24 hourFirst, dont be fooled by the picture on the Amazon page -- these are TINY little displays. But, unlike other reviewers, I had NO problem powering this from my ESP32 3.3V power rail.