SIMAIR-lgoo

SIMAIR SER1.3-B OLED Display Module

SIMAIR-SER1-3-B -OLED-Display -Module-product

Basic Specifications

Display Specifications

  1. Display Mode: Passive Matrix
  2. Display Color: Monochrome (White)
  3. Drive Duty: 1/64 Duty

Mechanical Specifications

  1. Outline Drawing: According to the annexed outline drawing
  2. Number of Pixels: 128 x 64
  3. PCB Size: 35.4×33.5×2.6 (mm)
  4. Active Area: 29.42 x 14.7 (mm)
  5. Pixel Pitch: 0.23 x 0.23 (mm)
  6. Pixel Size: 0.21 x 0.21 (mm)

Active Area / Memory Mapping & Pixel ConstructionSIMAIR-SER1-3-B -OLED-Display -Module-fig (1)

Mechanical Drawing

SIMAIR-SER1-3-B -OLED-Display -Module-fig (2)

NOTES:

  1. DISPLAY TYPE: 1.3″ OLED
  2. VIEWING DIRECTION: All
  3. POLARIZER MODE: TRANSMISSIVE/NORMALLY BLACK
  4. DRIVER IC: SH1106
  5. Resolution:128×64
  6. INTERFACE:SPI/IIC(The default is SPI interface)
  7. VOLTAGE:3.3V
    1. OPERATING TEMP: -40°C~70°C

SIMAIR-SER1-3-B -OLED-Display -Module-fig (3)

Pin Definition

SIMAIR-SER1-3-B -OLED-Display -Module-fig (16)

Product Picture

SIMAIR-SER1-3-B -OLED-Display -Module-fig (4)

Schemati DiagramSIMAIR-SER1-3-B -OLED-Display -Module-fig (5)

SPI Switch to IIC :

  1. Change R3 to R1.
  2. Ground DC pin and CS pin.
  3. Use IIC program

Absolute MaximumRatings

SIMAIR-SER1-3-B -OLED-Display -Module-fig (17)

  • Note 1: All the above voltages are on the basis of “GND = 0V”.
  • Note 2: When this module is used beyond the above absolute maximum ratings, permanent breakage of the module may occur. Also, for normal operations, it is desirable to use this module under the conditions according to Section 3. “Optics & Electrical Characteristics”. If this module is used beyond these conditions, malfunctioning of the module can occur, and the reliability of
    the module may deteriorate.
  • Note 3: The defined temperature ranges do not include the polarizer. The maximum withstood temperature of the polarizer should be 80C. Note 4: VCC = 12 V, Ta = 25°C, 50% Checkerboard. Software configuration follows Section 4.4 Initialization. End of lifetime is specified as 50% of the initial brightness reached. The average operating lifetime at room temperature is estimated by the accelerated operation at high temperature conditions.

Optics & Electrical Characteristics

Optics CharacteristicsSIMAIR-SER1-3-B -OLED-Display -Module-fig (18)

* Optical measurement taken at VDD = 2.8V, VCC = 12V & 7.25V. Software configuration follows Section 4.2 Initialization.

DC CharacteristicsSIMAIR-SER1-3-B -OLED-Display -Module-fig (19)

  • Note 5 & 6: Brightness (Lbr) and Supply Voltage for Display (VPP) are subject to the change of thepanel
    characteristics and the customer’s request.
  • Note 7: VDD = 2.8V, VCC = 12V, REF=910K,100% Display Area Turn on.
  • Note 8: VDD = 2.8V, VCC = 8V, REF=910K,100% Display Area Turn on. * Software configuration follows Section 4.2 Initialization.

AC Characteristics
SPI Interface Timing Characteristics:

SIMAIR-SER1-3-B -OLED-Display -Module-fig (20)SIMAIR-SER1-3-B -OLED-Display -Module-fig (6)

Functional Specification

CommandsSIMAIR-SER1-3-B -OLED-Display -Module-fig (21)

VCC Generated by Internal DC/DC CircuitSIMAIR-SER1-3-B -OLED-Display -Module-fig (7)

If the noise is accidentally occurred at the displaying window during the operation, please reset thedisplay in order to recover the display function.SIMAIR-SER1-3-B -OLED-Display -Module-fig (8) SIMAIR-SER1-3-B -OLED-Display -Module-fig (9)

void OLED_Init(void)
{
//OLED 复位
OLED_RES_Clr();//RES 置 0
delay_ms(200);//延时 200ms
OLED_RES_Set();//RES 置 1
//OLED 初始化
OLED_WR_Byte(0xAE,OLED_CMD); /*display off*/
OLED_WR_Byte(0x02,OLED_CMD); /*set lower column address*/
OLED_WR_Byte(0x10,OLED_CMD); /*set higher column address*/
OLED_WR_Byte(0x40,OLED_CMD); /*set display start line*/
OLED_WR_Byte(0xB0,OLED_CMD); /*set page address*/
OLED_WR_Byte(0x81,OLED_CMD); /*contract control*/
OLED_WR_Byte(0xcf,OLED_CMD); /*128*/
OLED_WR_Byte(0xA1,OLED_CMD); /*set segment remap*/
OLED_WR_Byte(0xA6,OLED_CMD); /*normal / reverse*/
OLED_WR_Byte(0xA8,OLED_CMD); /*multiplex ratio*/
OLED_WR_Byte(0x3F,OLED_CMD); /*duty = 1/64*/
OLED_WR_Byte(0xad,OLED_CMD); /*set charge pump enable*/
OLED_WR_Byte(0x8b,OLED_CMD); /* 0x8B 内供 VCC */
OLED_WR_Byte(0x33,OLED_CMD); /*0X30—0X33 set VPP 9V */
OLED_WR_Byte(0xC8,OLED_CMD); /*Com scan direction*/
OLED_WR_Byte(0xD3,OLED_CMD); /*set display offset*/
OLED_WR_Byte(0x00,OLED_CMD); /* 0x20 */
OLED_WR_Byte(0xD5,OLED_CMD); /*set osc division*/
OLED_WR_Byte(0x80,OLED_CMD);
OLED_WR_Byte(0xD9,OLED_CMD); /*set pre-charge period*/
OLED_WR_Byte(0x1f,OLED_CMD); /*0x22*/
OLED_WR_Byte(0xDA,OLED_CMD); /*set COM pins*/
OLED_WR_Byte(0x12,OLED_CMD);
OLED_WR_Byte(0xdb,OLED_CMD); /*set vcomh*/
OLED_WR_Byte(0x40,OLED_CMD);
OLED_Clear();
OLED_WR_Byte(0xAF,OLED_CMD); /*display ON*/
}

#define OLED_CMD 0 //write command
#define OLED_DATA 1 //write data
void OLED_WR_Byte(u8 dat,u8 cmd)
{
u8 i;
if(cmd)
OLED_DC_Set();
else
OLED_DC_Clr();
OLED_CS_Clr();
for(i=0;i<8;i++)
{
OLED_SCL_Clr();
if(dat&0x80)
OLED_SDA_Set();
else
OLED_SDA_Clr();
OLED_SCL_Set();
dat<<=1;
}
OLED_CS_Set();
OLED_DC_Set();
}

Reliability

Contents of Reliability Tests

SIMAIR-SER1-3-B -OLED-Display -Module-fig (22)

The samples used for the above tests do not include polarizer.
* No moisture condensation is observed during tests.

Failure Check Standard

After the completion of the described reliability test, the samples were left at roomtemperature for 2 hrs prior to conducting the failure test at 23±5±C; 55±15% RH

Outgoing Quality Control Specifications

Environment Required

Customer’s test & measurement are required to be conducted under the following conditions

  • Temperature: 23±5 C
  • Humidity: 55 ±15% RH
  • Fluorescent Lamp: 30W
  • Distance between the Panel & Lamp: ≥ 50cm
  • Distance between the Panel & Eyes of the Inspector: ≥ 30cm
  • Finger glove (or finger cover) must be worn by the inspector.
  • Inspection table or jig must be anti-electrostatic.

Sampling Plan

Level II, Normal Inspection, Single Sampling, MIL-STD-105E

Criteria & Acceptable Quality LevelSIMAIR-SER1-3-B -OLED-Display -Module-fig (23)

Cosmetic Check (Display Off) in Non-Active AreaSIMAIR-SER1-3-B -OLED-Display -Module-fig (10)

Cosmetic Check (Display Off) in Active Area
It is recommended to execute in clear room environment (class 10k) if actual in necessarySIMAIR-SER1-3-B -OLED-Display -Module-fig (24) SIMAIR-SER1-3-B -OLED-Display -Module-fig (11)

* Protective film should not be torn off the cosmetic check.
** Definition of W & L & Φ (Unit: mm): Φ = (a + b) / 2SIMAIR-SER1-3-B -OLED-Display -Module-fig (12)

Pattern Check (Display On) in Active AreaSIMAIR-SER1-3-B -OLED-Display -Module-fig (13) SIMAIR-SER1-3-B -OLED-Display -Module-fig (14)

Precautions When Using These OEL Display Modules

Handling Precautions

  1. Since the display panel is being made of glass, do not apply mechanical impacts such US dropping from a high position.
  2. If the display panel is broken by some accident and the internal organic substance leaks out, be careful not to inhale nor lick the organic substance.
  3. If pressure is applied to the display surface or its neighborhood of the OEL display module, the cell structure may be damaged and be careful not to apply pressure to these sections.
  4. The polarizer covering the surface of the OEL display module is soft and easily scratched. Please be careful when handling the OEL display module.
  5. When the surface of the polarizer of the OEL display module has soiled, clean the surface. It takes advantage of by using the following adhesion tape. * Scotch Mending Tape No. 810 or an equivalent
    Never try to breathe upon the soiled surface nor wipe the surface using a cloth containing solvent such as ethyl alcohol, since the surface of the polarizer will become cloudy. Also, pay attention that the following liquid and solvent may spoil the polarizer:
    • Water
    • Ketone
    • Aromatic Solvents
  6. Hold the OEL display module very carefully when placing OEL display module into the system housing. Do not apply excessive stress or pressure to OEL display module. And, donot overbend the film with electrode pattern layouts. These stresses will influence the display performance. Also, ensure sufficient rigidity for the outer cases.SIMAIR-SER1-3-B -OLED-Display -Module-fig (15)
  7. Do not apply stress to the driver IC and the surrounding molded sections.
  8. Do not disassemble nor modify the OEL display module.
  9. Do not apply input signals while the logic power is off.
  10. Pay sufficient attention to the working environment when handling OEL display modules to prevent the occurrence of element breakage accidents by static electricity.
    • * Be sure to make human body grounding when handling OEL display modules.
    • * Be sure to ground tools to use or assemble such as soldering irons.
    • * To suppress the generation of static electricity, avoid carrying out assembly work under dry environments.
    • * Protective film is being applied to the surface of the display panel of the OEL display module. Be careful since static electricity may be generated when exfoliating the protective film.
  11. Protection film is being applied to the surface of the display panel and the protection film before assembling it. At this time, if the OEL display module has been stored for a long period of time, residual adhesive material of the protection film may remain on the surface of the display panel after removal of the film. In such case, remove the residue material bythe method introduced in the above Section 5).
  12. 12) If electric current is applied when the OEL display module is being dewed or when it is placed under high-humidity environments, the electrodes may be corroded and be careful to avoid above.

Storage Precautions

  1. When storing OEL display modules, put them in static electricity preventive bags, avoiding exposure to direct sunlight nor to lights of fluorescent lamps. and, also, avoiding high temperature and high humidity environments or low temperature (less than 0 ° C) environments. (We recommend you to store these modules in the packaged state when
  2. they were shipped from ZhongJingYuan technology Co., Ltd.) At that time, be careful not to let water drops adhere to the packages or bags nor let dewing occur with them. If electric current is applied when water drops are adhering to the surface of the OEL display module, when the OEL display module is being dewed or when it is placed under high humidity environments, the electrodes may be corroded and be careful about the above.

Designing Precautions

  1. The absolute maximum ratings are the ratings that cannot be exceeded for OEL display module, and if these values are exceeded, panel damage may occur.
  2. To prevent the occurrence of malfunctioning by noise, pay attention to satisfy the ViL and Vin specifications and, at the same time, to make the signal line cable as short as possible.
  3. We recommend you to install excess current preventive unit (fuses, etc.) to the power circuit (VoD). (Recommend value: 0.5A)
  4. Pay sufficient attention to avoid othe occurrence of mutual noise interference with the neighboring devices.
  5. As for EMI, take the necessary measures on the equipment side basically.
  6. When fastening the OEL display module, fasten the external plastic housing section.
  7. If power supply to the OEL display module is forcibly shut down by such errors as taking out the main battery while the OEL display panel is in operation, we cannot guarantee the quality of this OEL display module.
  8. The electric potential to be connected to the rear face of the IC chip should be as follows: SSD1306
    * Connection (contact) to any other potential than the above may lead to rupture of the IC.

Precautions when disposing of the OEL display modules
Request the qualified companies to handle industrial wastes when disposing of the OEL display modules. Or, when burning them, be sure to observe the environmental and hygienic laws and regulations.

0ther Precautions

  1. When an OEL display module is operated for a long of time with fixed pattern may remain as an after image or slight contrast deviation may occur. Nonetheless, if the operation is interrupted and left unused for a while, normal state can be restored. Also, there will be no problem in the reliability of the module.
  2. To protect OEL display modules from performance drops by static electricity rapture, etc., do not touch the following sections whenever possible while handling the OEL display modules.
    * Pins and electrodes
    * Pattern layouts such as the FPC
  3. With this OEL display module, the OEL driver is being exposed. Generally speaking, semiconductor elements change their characteristics when light is radiated according to the principle of the solar battery. Consequently, if this OEL driver is exposed to light, malfunction may occur.
    * Design the product and installation method so that the OEL driver may be shielded from light in actual usage.
    * Design the product and installation method so that the OEL driver may be shielded from light during the inspection processes.
  4. Although this OEL display module stores the operation state data by the commands and the indication data, when excessive external noise, etc. enters into the module, the internal status may be changed. It therefore is necessary to take appropriate measures to suppress noise generation or to protect from the influences of noise on the system design. We recommend you to construct its software to make periodical refreshment of the operation statuses (re-setting of the commands and re-transference of the display data) to cope with catastrophic noise.

Warranty:
The warranty period shall last twelve (12) months from the date of delivery. Buyer shall complete assembling all the processes within the effective twelve (12) months. Wuxi Siminuo Technology shall be liable for replacing any products which contain defective material or process which do not conform to the product specification, applicable drawings and specifications during the warranty period. All products must be preserved, handled and appear to permit efficient handling during warranty period. The warranty coverage would be exclusive while the returned goods are out of the terms above.

Notice:
No part of this material may be reproduced or duplicated in any form or by any means without the written permission of Wuxi Siminuo Technology. Wuxi Siminuo Technology reserves the right to make changes to this material without notice. Wuxi Siminuo Technology does not assume any liability of any kind arising out of inaccuracies contained in this material or due to its application or use in any product or circuit and, further, there is no representation that this material is applicable to products requiring high level reliability, such as, medical products. Moreover, no license to any intellectual property rights is granted by implication or otherwise, and there is no representation or warranty that anything made in accordance with this material will be free from any patent or copyright infringement of a third party. All other product names mentioned herein are trademarks and/or registered trademarks of their respective companies.

Frequently Asked Questions

Q: What are some handling precautions for the OLED Display Module?

A: When using the OLED Display Module, ensure to follow these handling precautions:

  • Handle with care to avoid physical damage.
  • Avoid exposure to extreme temperatures or humidity.
  • Do not apply excessive pressure on the display.

Documents / Resources

SIMAIR SER1.3-B OLED Display Module [pdf] User Manual
SER1.3-B OLED Display Module, SER1.3-B, OLED Display Module, Display Module, Module

References

Leave a comment

Your email address will not be published. Required fields are marked *