1.30" inch OLED Screen Monochrome-White (128x64px) w/ 4-Pin I2C Serial Interface
-
RM30.00
- Product Code: Screen 1.30
- Availability: In Stock

OLED (Organic Light-Emitting Diode) is a 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 backlight. OLED possesses high application potential for virtually all types of displays and is regarded as the ultimate technology for the next generation of flat-panel displays.
Supports many control chip: Fully compatible with Arduino, 51 Series, MSP430 Series, STM32 / 2, CSR IC, etc.
Specifications
Package included
1 x OLED display
Pin-outs

VCC → 3.3V
GND → GND
SCK → A5
SDA → A4
Arduino Sketch
#include "U8glib.h"
U8GLIB_SH1106_128X64 u8g(U8G_I2C_OPT_NONE);
void draw(void) {
u8g.setFont(u8g_font_profont12);
u8g.setPrintPos(0, 10);
u8g.print("This is the 1.3\"");
u8g.setPrintPos(0, 25);
u8g.print("White i2c OLED from");
u8g.setPrintPos(0, 40);
u8g.print("ICStation.com.");
}
void draw2(void) {
u8g.setFont(u8g_font_profont12);
u8g.setPrintPos(0, 10);
u8g.print("Check out the project");
u8g.setPrintPos(0, 25);
u8g.print("and review on");
u8g.setPrintPos(0, 40);
u8g.setFont(u8g_font_profont10);
u8g.print("qqtrading.com.my");
}
void setup(void) {
}
void loop(void) {
u8g.firstPage();
do {
draw();
} while (u8g.nextPage() );
delay(3500);
u8g.firstPage();
do {
draw2();
} while (u8g.nextPage());
delay(3500);
}