SIMAIR-lgoo

SIMAIR SER1.3-B OLED Display Module

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

Manylebau Sylfaenol

Manylebau Arddangos

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

Manylebau Mecanyddol

  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. Ardal Weithredol: 29.42 x 14.7 (mm)
  5. Cae picsel: 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)

Lluniadu Mecanyddol

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

NODIADAU:

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

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

Diffiniad Pin

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

Llun Cynnyrch

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.

Nodweddion Opteg a Thrydanol

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.

Nodweddion DCSIMAIR-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 Nodweddion
SPI Interface Timing Characteristics:

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

Manyleb Swyddogaethol

GorchmynionSIMAIR-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();
arall
OLED_DC_Clr();
OLED_CS_Clr();
ar gyfer(i=0; i<8;i++)
{
OLED_SCL_Clr();
if(dat&0x80)
OLED_SDA_Set();
arall
OLED_SDA_Clr();
OLED_SCL_Set();
dat<<=1;
}
OLED_CS_Set();
OLED_DC_Set();
}

Dibynadwyedd

Cynnwys Profion Dibynadwyedd

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

Y sampNid yw'r les a ddefnyddir ar gyfer y profion uchod yn cynnwys polarydd.
* Ni welir unrhyw anwedd lleithder yn ystod profion.

Failure Check Standard

Ar ôl cwblhau'r prawf dibynadwyedd a ddisgrifiwyd, y samples were left at roomtemperature for 2 hrs prior to conducting the failure test at 23±5±C; 55±15% RH

Manylebau Rheoli Ansawdd Allanol

Amgylchedd Angenrheidiol

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

  • Temperature: 23±5 C
  • Humidity: 55 ±15% RH
  • fflwroleuol Lamp:30W
  • Pellter rhwng y Panel a'r Lamp: ≥ 50cm
  • Pellter rhwng y Panel a Llygaid yr Arolygydd: ≥ 30cm
  • Rhaid i'r arolygydd wisgo menig bysedd (neu orchudd bysedd).
  • Rhaid i'r bwrdd neu'r jig archwilio fod yn wrth-electrostatig.

SampCynllun ling

Lefel II, Archwiliad Arferol, S Senglampling, 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.
** Diffiniad o W & L & Φ (Uned: 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)

Rhagofalon Wrth Ddefnyddio'r Modiwlau Arddangos OEL hyn

Trin Rhagofalon

  1. Since the display panel is being made of glass, do not apply mechanical impacts such US dropping from a high position.
  2. Os caiff y panel arddangos ei dorri gan ryw ddamwain a bod y sylwedd organig mewnol yn gollwng, byddwch yn ofalus i beidio ag anadlu na llyfu'r sylwedd organig.
  3. Os rhoddir pwysau ar arwyneb yr arddangosfa neu ei gyffiniau â modiwl arddangos OEL, gall strwythur y gell gael ei ddifrodi a byddwch yn ofalus i beidio â rhoi pwysau ar yr adrannau hyn.
  4. Mae'r polarydd sy'n gorchuddio wyneb y modiwl arddangos OEL yn feddal ac yn hawdd ei grafu. Byddwch yn ofalus wrth drin y modiwl arddangos OEL.
  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:
    • Dwfr
    • Ceton
    • Toddyddion Aromatig
  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. Peidiwch â rhoi straen ar y gyrrwr IC a'r adrannau mowldio cyfagos.
  8. Peidiwch â dadosod na newid y modiwl arddangos OEL.
  9. Peidiwch â gosod signalau mewnbwn tra bod y pŵer rhesymeg i ffwrdd.
  10. Pay sufficient attention to the working environment when handling OEL display modules to prevent the occurrence of element breakage accidents by static electricity.
    • * Gwnewch yn siŵr eich bod yn seilio'r corff dynol wrth drin modiwlau arddangos OEL.
    • * 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.

Rhagofalon Storio

  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.

Dylunio Rhagofalon

  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. Wrth glymu'r modiwl arddangos OEL, clymwch y rhan tai plastig allanol.
  7. Os caiff y cyflenwad pŵer i'r modiwl arddangos OEL ei orfodi i gau i lawr oherwydd gwallau fel tynnu'r prif fatri allan tra bod panel arddangos OEL ar waith, ni allwn warantu ansawdd y modiwl arddangos OEL hwn.
  8. The electric potential to be connected to the rear face of the IC chip should be as follows: SSD1306
    * Gall cysylltiad (cyswllt) ag unrhyw botensial heblaw'r uchod arwain at rwygo'r IC.

Precautions when disposing of the OEL display modules
Gofynnwch i'r cwmnïau cymwys ymdrin â gwastraff diwydiannol wrth waredu'r modiwlau arddangos OEL. Neu, wrth eu llosgi, gwnewch yn siŵr eich bod yn cydymffurfio â'r deddfau a'r rheoliadau amgylcheddol a hylendid.

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. Er mwyn amddiffyn modiwlau arddangos OEL rhag gostyngiadau perfformiad oherwydd ysgytiad trydan statig, ac ati, peidiwch â chyffwrdd â'r adrannau canlynol pryd bynnag y bo modd wrth drin y modiwlau arddangos OEL.
    * Pinnau ac electrodau
    * Cynlluniau patrwm fel yr 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.
    * Dyluniwch y cynnyrch a'r dull gosod fel y gellir cysgodi'r gyrrwr OEL rhag golau mewn defnydd gwirioneddol.
    * Dyluniwch y cynnyrch a'r dull gosod fel y gellir cysgodi'r gyrrwr OEL rhag golau yn ystod y prosesau arolygu.
  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.

Gwarant:
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.

Sylwch:
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.

Cwestiynau Cyffredin

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.
  • Osgoi amlygiad i dymheredd neu leithder eithafol.
  • Do not apply excessive pressure on the display.

Dogfennau / Adnoddau

SIMAIR SER1.3-B OLED Display Module [pdfLlawlyfr Defnyddiwr
SER1.3-B OLED Display Module, SER1.3-B, OLED Display Module, Display Module, Module

Cyfeiriadau

Gadael sylw

Ni fydd eich cyfeiriad e-bost yn cael ei gyhoeddi. Mae meysydd gofynnol wedi'u marcio *