TEV-LB1

Top  Previous  Next

The TEV-LB1 board carries a 128x96, 4-bit RITDISPLAY RGS13128096 OLED panel. This panel is based on a SOLOMON SSD1329 controller.

Related datasheets, as well as the schematic diagram for the TEV-LB1 board can be found on Tibbo website.

Interconnection between the EM1000 and the panel

Pin #(1)

EM1000 I/O line

Panel

5

GPIO48

---

6

GPIO47

---

7

GPIO46

---

8

GPIO39/P4.7

D7

9

GPIO38/P4.6

D6

10

GPIO37/P4.5

D5

11

GPIO36/P4.4

D4

12

GPIO35/P4.3

D3

13

GPIO34/P4.2

D2

14

GPIO33/P4.1

D1

15

GPIO32/P4.0

D0

16

GPIO44

RST

17

GPIO43

D/C

18

GPIO42

R/W

19

GPIO41

E

20

GPIO40

CS

(1) Pin number on the TEV-LB1 connector.

Required initialization code in Tibbo BASIC application

This section assumes that you are familiar with Tibbo BASIC and TIDE software. These are documented in the "Tibbo BASIC Programming Guide".

For correct panel operation, click Project-> Settings, and select "EM1000" or "EM1000W" platform. Additionally, click Customize to open a Customize Platform dialog. In the dialog, double-click the Display Panel Type line and choose "Solomon SSD1329 (Ritdisplay RGS13128096)".

The following initialization code should also be added to your project:

 

 

lcd.iomapping="44,43,42,41,40,4" 'RST,DC,WR,RD,CS,data_bus

'(W is marked "R/W" on the schematic diagram, RD is marked "E")

 

io.num=PL_IO_NUM_40

io.enabled=YES

 

io.num=PL_IO_NUM_41

io.enabled=YES

 

io.num=PL_IO_NUM_42

io.enabled=YES

 

io.num=PL_IO_NUM_43

io.enabled=YES

 

io.num=PL_IO_NUM_44

io.enabled=YES

 

lcd.width=128

lcd.height=96

lcd.rotated=NO

lcd.inverted=NO

lcd.enabled=YES