Description
0.96″ OLED Display Module – I2C – 128×64 – 4 Pin (White) can be interfaced with any microcontroller using IIC protocols. It is having a resolution of 128×64 . The package includes display board,display, 4 pin male header presoldered to board.
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.
0.96″ OLED Display Module – I2C – 128×64 – 7 Pin (White) offers 128×64 pixel resolution. They are featuring much less thickness than LCD displays with good brightness and also produce better and true colors.
Note: OLED Display is different from LCD. OLED is self-illuminating. Thus, there is no backlight. In case the display is connected to power only, it will not be lit or display anything. To display anything , the OLED must be properly programed.
Features
- Diagonal Screen Size:0.96″
- Number of Pixels:128 x 64
- Color Depth:Monochrome
- Dimension:27.8 x27.3x 4.3 mm
- Working Voltage: 3.3~ 5V DC
- Power: 0.06W Max
- Viewing Angle: >160 Degree
- Duty:1/32
- Brightness ( cd/m2):150 (Typ) @ 5V
- Interface: I2C
Arduino code
#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);
}
|