I2C 0.96″ OLED 128x64
$22.5
$34.88
This OLED display module is small, only 0.96” diagonal, it is made of 128x64 individual blue OLED pixels, each one is turn on or off by the controller chip. It works without backlight, that is, in a dark environment, OLED display is higher compared to that of LCD display, you will like the miniature for its crispness. This module uses I2C to communicate with microcontroller such as Arduino.FeaturesDiagonal Screen Size:0.96″Number of Pixels:128 x 64Color Depth:MonochromeDimension:27.8 x27.3x 4.3 mmWorking Voltage: 3.3~ 5V DCPower: 0.06W MaxViewing Angle: >160 DegreeDuty:1/32Brightness ( cd/m2):150 (Typ) @ 5VInterface: I2CArduino codeArduino #include "U8glib.h" U8GLIB_SSD1306_128X64 u8g(U8G_I2C_OPT_NONE); void drawURL(void) { u8g.setFont(u8g_font_9x18); u8g.drawStr(25,10,"Elecrow"); u8g.setFont(u8g_font_7x14); u8g.drawStr(5,35,"www.elecrow.com"); } void setup(void) { } void loop(void) { // picture loop u8g.firstPage(); do { drawURL(); u8g.setColorIndex(1); } while( u8g.nextPage() ); // rebuild the picture after some delay delay(200); }123456789101112131415161718192021222324#include “U8glib.h”U8GLIB_SSD1306_128X64 u8g(U8G_I2C_OPT_NONE); void drawURL(void){ u8g.setFont(u8g_font_9x18); u8g.drawStr(25,10,“Elecrow”); u8g.setFont(u8g_font_7x14); u8g.drawStr(5,35,“www.elecrow.com”); }void setup(void) {} void loop(void) { // picture loop u8g.firstPage(); do { drawURL(); u8g.setColorIndex(1); } while( u8g.nextPage() ); // rebuild the picture after some delay delay(200); } Download& UsageSSD1306 DatasheetElecrow 0.96” I2C OLED Library&DemoWiki link
Oled