Eaoledm204 Lga

Download as pdf or txt
Download as pdf or txt
You are on page 1of 10

EA OLEDM204

INCL CONTROLLER SSD1311 FOR SPI AND I²C

Dimension 61x26x3.3mm

FEATURES
 4x20 CHARACTER / ALTERNATIVELY 3x20 OR 2x20 WITH DOUBLE HEIGHT FONT
 CONTRASTY OLED DISPLAY (TYP. 170° VIEWING ANGLE)
 INTEGRATED CONTROLLER SSD1311
 SINGLE SUPPLY 3.3V OR 5V
 SPI-INTERFACE (3-WIRE): MOSI, CLK, CS
 I²C INTERFACE: SDA, SCL
 EXTREME WIDE TEMPERATURE RANGE (TOP -40°C - +80°C)
 NO SPECIAL ASSEMBLY NECESSARY: SIMPLY SOLDER INTO PCB
 3 VERSIONS AVAILABLE: WITH / WITHOUT POLARISER AND COVER GLASS
 FAST RESPONSE TIME (10µS), NO AFTERGLOW EFFECT

ORDERING CODE
 OLED TEXT 4x20, yellow, black background, incl. cover glass EA OLEDM204-GGA
 OLED TEXT 4x20, yellow, black background, no cover glass EA OLEDM204-LGA
 OLED TEXT 4x20, white, black background, no cover glass EA OLEDM204-LWA

FROM A MINIMUM QUANTITY OF 500 PCS.


 SPECIAL COLORS OLED TEXT 4x20, with polariser (no cover glass) EA OLEDM204-LxA
X: G = Green
B = Blue

ACCESSORIES
 TEST BOARD WITH USB INTERFACE EA 9781-1USB
 SOCKET 4.8mm HEIGHT (2 PCS. ARE REQUIRED) EA FL-10P

ELECTRONIC ASSEMBLY GmbH Phone: +49 (0)8105-7780 90 Issue 04.2018


Zeppelinstraße 19 Fax: +49 (0)8105-7780 99
D-82205 Gilching e-Mail: [email protected]
Germany Web: www.lcd-module.de
EA OLEDM204

EA OLED SERIES
With its EA OLED series ELECTRONIC ASSEMBLY launches worldwide the first display family with OLED-
technology for direct mounting and soldering. In comparison to standard displays there’s no FFC/FPC
cable/connector that may loose contact, this OLED series will be soldered directly or put into a standard 2.54
mm precision socket.
It is designed for compact handheld equipment and provides a lot real advantages:
- Extreme compact (68x51mm) with a large viewing area (64x37mm)
- Super flat with 2.4 mm (without frontal protection glass)
- SPI and I²C interface
- Simple mounting with direct soldering
- Ex stock available from 1 pc. off
- Long life time (80,000 h for yellow)
- Extreme wide temperature range (-40..+80°C)
- Fast response time (10µs), no afterglow

VERSIONS
The EA OLEDM204 is available in 3 different versions:
EA OLEDM204-GGA / Allround
This module is perfect for rough environment. An additional frontal glass protects the display against scratch,
shock and UV light. Thanks to its integrated polariser there’s no need for an additionally smoked glass.
EA OLEDM204-LGA / Flat
This module is the standard module and does fit for the most applications. The flat design (2.4 mm) makes
the display perfect for smallest equipment. The background is always deep black for best contrast.
EA OLEDM204-LWA / White and Flat
This module is the standard module and does fit for the most applications. The white colored text and the flat
design (2.4 mm) makes the display perfect for smallest equipment. The background is always deep black for
best contrast.

COLORS (CUSTOM MADE)


The standard colors are yellow and white.
The flat version EA OLEDM204-LGA is on customers request available in 3 more colors. The minimum order
quantity is 500 pcs. and lead time is about 20 weeks. Samples are normally available ex stock.
Interface and software are 100% compatible. The yellow color provides highest brightness and longest life
time.

EA OLEDM204-LEA EA OLEDM204-LBA

Printing and typographical errors reserved. Page 2


ELECTRONIC ASSEMBLY reserves the right to change specification without prior note.
EA OLEDM204

APPLICATION EXAMPLES

SPI – 3.3V SPI – 5V

I²C – 3.3V - Address 0x78 (0x3C) I²C – 5V - Address 0x78 (0x3C)

Printing and typographical errors reserved. Page 3


ELECTRONIC ASSEMBLY reserves the right to change specification without prior note.
EA OLEDM204

DATA TRANSFER 3-WIRE SPI (8 BIT)


Data transmission for SPI is unidirectional, that means that data can only be written, there’s no data read
option. Selection for writing data or command is done with the DC bit.

A busy check is not necessary at all. Clock rate may be up to 1 MHz. Data transmission is based on SPI
mode 3, MSB first. For more details please refer to the controllers data sheet SSD1311.

DATA TRANSFER I²C


The I²C mode provides a bi-directional data transmission: That means that data can be written and read.
Because SA0 is internally set to GND, the I²C address is 0x78 (0x3C). The clock rate may be up to 400 KHz.
Please make sure when defining the pull-up resistors that the internal resistance of the display is 600..1000
. This affects the low level when reading data and ACK bit.

Attention: When reading data, after the command for page- or column address there need to be a dummy
read (discard the first byte).

Control byte: Co (Continuation bit) = 0  Display data do follow; 1  refer D/C bit.

Printing and typographical errors reserved. Page 4


ELECTRONIC ASSEMBLY reserves the right to change specification without prior note.
EA OLEDM204

COMMAND TABLE (ABSTRACT)


This is a collection of the most important commands. The data sheet SSD1311 provides the full list plus a
detailed description.

Printing and typographical errors reserved. Page 5


ELECTRONIC ASSEMBLY reserves the right to change specification without prior note.
EA OLEDM204

Printing and typographical errors reserved. Page 6


ELECTRONIC ASSEMBLY reserves the right to change specification without prior note.
EA OLEDM204

The complete data sheet for the controller SSD1311 is available at our website under
http://www.lcd-module.de/fileadmin/eng/pdf/zubehoer/ssd1311.pdf.

Printing and typographical errors reserved. Page 7


ELECTRONIC ASSEMBLY reserves the right to change specification without prior note.
EA OLEDM204

3 CHARACTER SETS BUILT-IN

INITIALISATION EXAMPLE
void init_OLEDM204(void)
{
command(0x3A); //FunctionSet: N=1 BE=0 RE=1 IS=0
command(0x09); //4‐line mode
command(0x05); //View 0°
command(0x1C); //FunctionSet: N=1 DH=0 RE=0 IS=0
command(0x3C);
command(0x3A); //FunctionSet: N=1 BE=0 RE=1 IS=0
command(0x72); //ROM Selection (RE muss 1 sein)
data(0x00); //ROM A
command(0x3C); //FunctionSet: N=1 DH=0 RE=0 IS=0
command(0x0C); //Display cursor on
command(0x01); //Clear display
}

ACCESSORY: SOCKET EA FL-10P


Using a 10-pin socket makes the display replaceable and
adapts the height. Those socket may also be soldered
automatically by wave soldering or reflow process. Each
display requires 2 pcs.

Printing and typographical errors reserved. Page 8


ELECTRONIC ASSEMBLY reserves the right to change specification without prior note.
EA OLEDM204

ELECTRICAL SPECIFICATION
Unless otherwise specified, VSS = 0V , VDD = 1.8 - 3.3V ( Ta = 25 )

Value Condition min typ max Unit


Operating Temperature -40 +80 °C
Storage Temperature -40 +80 °C
Storage Humidity <40°C 90 %RH
Operating Voltage VDD 3.3V Design 2.4 3.3 3.6 V
logic supply 5V Design 4.4 5.0 5.5 V
Operating Voltage VCC
12.0 13.0 V
OLED supply
High Logic input level 0.8 x VDDIO V
Low Logic input level 0.2 x VDDIO V
High Logic output level 0.9 x VDDIO V
Low Logic output level 0.1 x VDDIO
Empty 0,4 mA
Power Supply VCC 1) Demo content3) 3 mA
Block Character 12 mA
Empty 2.5 mA
Power Supply VDD2) Demo content3) 18 mA
Block Character 23 mA
1) VCC=12V, externally generated. Initialization 0x81,0xFF / 0xDB,0x20
2) VCCinternally generated, VDD=3.3V. Initialization 0x8D, 0x95 / 0x81,0xFF / 0xD5,0x40 / 0xD9,0x44 / 0xDB,0x20
3) Demo content:

OPTICAL DATA

Item Symbol Condition min typ max Unit


(V)θ CR≧2000 160 170 deg
View Angle
(H)φ CR≧2000 160 170 deg
Contrast Ratio CR Dark Room 2000:1
T rise 10 µs
Response Time
T fall 10 µs
Luminance L -6GGA / -6LGA 80 100 cd/m²
CIE 1931 x(Yellow) Dark Room 0.45 0.47 0.49
CIE 1931 y(Yellow) Dark Room 0.48 0.50 0.52

Printing and typographical errors reserved. Page 9


ELECTRONIC ASSEMBLY reserves the right to change specification without prior note.
EA OLEDM204

DIMENSION EA OLEDM204

All dimensions are in mm

Note:

PINOUT - OLED displays are generally not


suited for wave or reflow soldering.
Temperatures of over 80°C can cause
lasting damage.
Pin Symbol Description Pin Symbol Description
- The surfaces of the displays are
1 VSS Ground 11 IREF Segment current reference protected from scratching by self-
2 REGVDD Internal 3.3V regulator 12 R̅E̅S̅ Reset (active low) adhesive protective foil. Please remove
before mounting
3 VDD 3.3 V power supply
- OLED are generally designed for
4 VDDIO Logic power supply
indoor application. When be used
5 CLK/SCL Serial Clock outside they need to be protected
6 MOSI/SDAin Data in against sunlight (UV radiation) and
humidity, water and dust.
7 MISO/SDAout Data out
8 VCOMH COM signal
9 VCC OLED driving voltage 19 C̅S̅ Chip Select (active low)
L = 4-Wire SPI
10 VLSS Analoge ground 20 BS1
H = I²C Interface

Printing and typographical errors reserved. Page 10


ELECTRONIC ASSEMBLY reserves the right to change specification without prior note.

You might also like