Sale!

1.3 OLED

SKU: PE - 125 Category: Tag:

Description

OLED 1.3?inch is a monochrome graphic display module with a built-in?1.3?inch, 128X64 high-resolution display.?OLED 1.3 inch is able to work despite the absence of back light.

With this OLED show, it is a lot of simple to include messages, visuals, designs or even activitys, besides, any sensor’s readings can be shown to this OLED for a more versatile, advantageous use. An OLED comprises of numerous smaller than usual pixels, in which everyone is customized independently from its driver chip. Every pixel will in general draw a specific measure of current, so there is no set working current with this presentation and it could change immeasurably, additionally, there is no backdrop illumination on this module as every pixel makes its own light as of now. There isn’t a requirement for such a level shifter needed for utilizing this board and it can associate with your microcontroller straightforwardly, running on the i2c interface.

 

Stage 1: Pin Definition

 

SDA – Data Line

 

SCL – Clock Line

 

Stage 2: Pin Connection

 

VCC to 5V or 3.3V

 

GND to GND

 

SCL to A5

 

SDA to A4

 

Stage 3: Sample Source Code

 

To get the outcome, it would be ideal if you download the example source code appended underneath and transfer it into Arduino.

 

Stage 4: U8glib Library

 

In the wake of downloading the U8glib library and move the removed document to the ideal Arduino’s libraries, presently restarting the Arduino programming by stopping the whole programming and open the product by and by. Presently, you should have the option to see something very similar in the ‘Record’ alternative.

 

Clients can basically attempt those composed coding and build the circuit as indicated by the coding. Later clients can transfer those coding into Arduino and perceive how the circuit functions. Don’t hesitate to test!

 

Stage 5: Display Your Own Picture Into Arduino Readable Code

 

Go to here and download LCD Assistant.zip. Presently, introduce into your PC and open it. Go to File > Load Image and pick your pic. Ensure you have as of now save your pic as monochrome bitmap .bmp prior to transferring into LCD Assistant or a container with a “unkown picture document augmentation (.jpg)” words will show up on your screen. Next, you need to click “save yield” and save your image to cpp record by adding “.cpp” toward the finish of your document name. Presently open your saved .cpp record utilizing word cushion. Allude picture above for a superior arrangement.

 

Stage 6: Results

 

The changing of examples appeared on OLED LCD show while OLED is being associated with power supplies.

 

Stage 7: Videos

 

#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(“electorials.weebly.com.”);

}

 

void setup(void) {

}

 

void loop(void) {

u8g.firstPage();

do {

draw();

} while (u8g.nextPage() );

delay(3500);

u8g.firstPage();

do {

draw2();

} while (u8g.nextPage());

delay(3500);

}

Customer Reviews

There are no reviews yet.

Be the first to review “1.3 OLED”

This site uses Akismet to reduce spam. Learn how your comment data is processed.