This OLED display module is small, only 0.96” diagonal, it is made of 128×64 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.
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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#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); } |
Reviews
There are no reviews yet.