Product Specifications

General

Type: Display
Architecture: For Arduino
Operating Temperature: -40°C ~ 70°C 
Communication Method: IIC
Driver IC (Integrated Circuit): SH1106
OLED (Omitting Light Emitting Diode) Colour: White

Power

Operating Voltage: +3.3 - +5 volts
Operating Current: (Depends on the usage of the individual pixels)

Weight and Size Dimensions

Diagonal Screen Size: 1.3" (3.302 cm)
Resolution Size: 128 x 64 pixels
Display Size: 3.32 x 1.7 cm 
Product Weight: 6g
Product Size (L x W x H): 3.55 x 3.33 x 1.1 cm

Pinout

GND - GND (-)
VCC - VCC (+)
SCL - SCL (Serial Clock)
SDA - SDA (Serial Data)

Product Review

This OLED (Omitting Light Emitting Diode) mainly differs from other similar I2C OLED display because of its increased size. Beneficially, it include positive features which may include the likes of:
1. An increase screen size (diagonal) and overall display (length and width) for larger, clearer visuals, being compared to a 0.96" OLED display.
2. The multiple resources available with this product, which includes sample codes, libraries and tutorials from other makers.
3. A simple hardware and software interface where it runs on the i2c protocol, which means that it consists of four main connections (GND, VCC, SCL and SDA).
4. The pre-soldered pins on this product, compared to other similar displays where the pins don't arrive soldered. This feature makes a maker's experience with this product simpler.
5. It's capability to perform code consisting of displaying many images, animations and text with a few lines of code only.
6. The overall design of this product; lightweight and compact to fit any container easily, especially with the four, circular mounting holes at each corner of this display.

Arduino 1.3" I2C White OLED Display Sample Code

#include "U8glib.h"
U8GLIB_SH1106_128X64 u8g(U8G_I2C_OPT_NONE);    // I2C / TWI 

void draw(void) {
  u8g.setFont(u8g_font_unifont);
  u8g.drawStr( 0,10, "Hello World!");
}

void setup(void) {
  if ( u8g.getMode() == U8G_MODE_R3G3B2 ) {
    u8g.setColorIndex(255);     // white
  }
  else if ( u8g.getMode() == U8G_MODE_GRAY2BIT ) {
    u8g.setColorIndex(3);         // max intensity
  }
  else if ( u8g.getMode() == U8G_MODE_BW ) {
    u8g.setColorIndex(1);         // pixel on
  }
  else if ( u8g.getMode() == U8G_MODE_HICOLOR ) {
    u8g.setHiColorByRGB(255,255,255);
  }
  pinMode(8, OUTPUT);
}

void loop(void) {
  u8g.firstPage();  
  do {
    draw();
  } while( u8g.nextPage() );
}

 ICStation Product Page 

PictureCheck out the product here:                                                                                                              http://www.icstation.com/product_info.php?aid=294&products_id=10987

For purchases from ICStation, use this code for a discount:
Code: Simics
Discount Amount: 15% off
Max. Use: 1 (one per user) 
Amount Limit: 30

Sponsor Link:

UTSource.net Reviews

It is a trustworthy website for ordering electronic components with cheap price and excellent quality.

Amazing opportunities

Also, be sure to check out PCBWay, a leading manufacturer and distributor in PCB design and manufacturing. They have amazing prices and excellent quality in their services, so don't miss out on them! Plus, PCBWay has an amazing website, online Gerber viewer function and a gift shop so make sure to check out their links below:

PCBWay Free Online Gerber Viewer Function:  https://www.pcbway.com/project/OnlineGerberViewer.html

PCBWay Gift Shop: https://www.pcbway.com/projects/gifts.html

Be sure to check out the Arduino 1.3" I2C White OLED Display Project by clicking here.

Enjoy! Contact us for any inquiries!