0.96inch OLED, SPI or I2C interfaces, fitted with straight header available in 3 different colours White, Blue and Yellow-Blue. Each display is fully tested in in-house Laboratory.

The Organic Light Emitting Diode(OLED) display is self light-emitting technology composed of a thin, multi-layered organic film placed between an anode and cathode. In contrast to LCD technology, OLED does not require a back-light. The OLED display offers wide viewing range, almost 180 degree from left to right and up to down and also consumes less power than existing LCD’s. 

Key Parameters

DRIVER CHIP

SSD1306

INTERFACE

 4-Pin SPI or 2-Pin I2C

RESOLUTION

128*64

DISPLAY SIZE

0.96inch

COLOURS

• Yellow/Blue 

(1/4 yellow section, 3/4 blue section)

• White

• Blue

VISIBLE ANGLE

>160°

OPERATING TEMP. (C)

-20~70

STORAGE TEMP. (C)

-30~80

OPERATING VOLTAGE

3.3V - 5V

SPI 7-Pin Interface

PIN NO.

SYMBOL

DESCRIPTION

1

GND

Ground

2

VCC

Power positive (3.3~5V power input)

3

D0

Clock Line (SCLK)

4

D1

MOSI Data

5

RES

Reset line (active high)

6

DC

Data/Command selection

7

CS

Chip select

8

RES

Reset signal, low active

 

I2C 4-Pin Interface

SYMBOL

DESCRIPTION

GND

Ground

VCC

Power (3.3~5V input)

SCL

Clock input

SDA

Data input

Dimensions 


All measurements in mm

Wiring Diagram

These displays are small, only 0.96″ diameter, but very readable due to the high contrast of an OLED display. This display is made of 128×64 individual colour OLED pixels, each one is turned on or off by the controller chip. No back-light is required for this display because it makes its own light which reduces the power required to run the OLED. Its Visual Angle is greater than 160°. It needs either 4 or 2 I/O Port to Control, since this display uses SPI or I2C common interface for easy plug and play usage – meaning you can connect it without the need for wires – just plug it straight in to your device.

SPI 7-Pin interface example

 

I2C 4-Pin interface example


Example Code for Ardiuno Uno R3

/*********************************************************************

This is an example for our Monochrome OLEDs based on SSD1306 drivers

IF Components

*********************************************************************/


#include <SPI.h>

#include <Wire.h>

#include <Adafruit_GFX.h>

#include <Adafruit_SSD1306.h>


// If using software SPI (the default case):

#define OLED_MOSI   9

#define OLED_CLK   10

#define OLED_DC    11

#define OLED_CS    12

#define OLED_RESET 13

Adafruit_SSD1306 display(OLED_MOSI, OLED_CLK, OLED_DC, OLED_RESET, OLED_CS);


/* Uncomment this block to use hardware SPI

#define OLED_DC     6

#define OLED_CS     7

#define OLED_RESET  8

Adafruit_SSD1306 display(OLED_DC, OLED_RESET, OLED_CS);

*/


#if (SSD1306_LCDHEIGHT != 64)

#error("Height incorrect, please fix Adafruit_SSD1306.h!");

#endif

const unsigned char myBitmap [] PROGMEM = {

0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x03, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x60, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xf8, 0x07, 0xfe, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xf8, 0x0f, 0xff, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xf8, 0x0f, 0xff, 0x80, 0x0f, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xfc, 0x0f, 0xff, 0x80, 0x1f, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xfc, 0x0f, 0xff, 0x80, 0x7f, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0x81, 0xf8, 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xfe, 0x7f, 0xfe, 0x03, 0xe0, 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x7c, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0f, 0xc0, 0x00, 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7e, 0x07, 0xe0, 0x00, 0x03, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf8, 0x1f, 0xf8, 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xe0, 0x3f, 0xfe, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xfe, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x3f, 0xfe, 0x00, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x1f, 0xfe, 0x1f, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x1f, 0xfc, 0x3f, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x3f, 0xf8, 0x7f, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x7c, 0x00, 0x7f, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x01, 0xf8, 0x00, 0x3f, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x03, 0xe0, 0x00, 0x3f, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xc0, 0x00, 0x0f, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xce, 0x0f, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 

  0xff, 0xce, 0x7f, 0x8e, 0x78, 0x72, 0x31, 0xec, 0x7c, 0x3d, 0x8f, 0x87, 0x63, 0x87, 0x8f, 0xff, 

  0xff, 0xce, 0x3f, 0x9f, 0xe6, 0x31, 0x08, 0xc6, 0x33, 0x18, 0xce, 0x26, 0x11, 0x8f, 0x67, 0xff, 

  0xff, 0xce, 0x3f, 0x9f, 0xcf, 0x33, 0x9c, 0xce, 0x27, 0x99, 0xee, 0x46, 0x39, 0xcf, 0x3f, 0xff, 

  0xff, 0x8e, 0x7f, 0x9f, 0xcf, 0x33, 0x9c, 0xce, 0x67, 0x99, 0xcc, 0x7e, 0x79, 0x9f, 0xcf, 0xff, 

  0xff, 0x9c, 0xff, 0xc0, 0xe0, 0x73, 0x9c, 0xc0, 0x70, 0x39, 0xce, 0x0e, 0x7b, 0x8f, 0x0f, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 

  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,

};

void setup()   {                

  

  display.begin(SSD1306_SWITCHCAPVCC, 0x3C);  // initialize with the I2C addr 0x3C (for the 128x64)

  display.clearDisplay(); // Make sure the display is cleared

  // Draw the bitmap:

  // drawBitmap(x position, y position, bitmap data, bitmap width, bitmap height, color)

  display.drawBitmap(0, 0, myBitmap, 128, 64, WHITE);

    // invert the display

  display.invertDisplay(true);


  // Update the display

  display.display();

}

void loop() {

}


PAYMENT        

We only accept paypal, please contact us via ebay message if you have any question.    

 

SHIPPING        

We aim to dispatch all orders next working day Mon-Fri. The orders are on the weekends will be dispatch on the next Monday.

 

If you have any question and requirement about shipping, please contact us via Ebay Message.

 

RETURN POLICY        

If you are not satisfied due to a fault or damage with the items please return them back to us for a refund or replacement.
       

NOTICE: All replacement and refund will be issued only after we received the returns. Please contact us by eBay message before you return the item.  

             

FEEDBACK        

Since your feedback is very important to our business`s development, we will always try to resolve your issues or queries as soon as possible.  Thank you.

Our working hours are: Monday-Friday, 9:00 AM-5:00 PM.

We are replying to all message as quickly as we can but please allow  at least 24h for our replies.(Message received on Fridays afternoon and  over the weekend will have limited reply but guaranteed to be responded on Monday).