ARM HOW-TO GUIDE Interfacing GLCD with LPC2148 ARM

Size: px
Start display at page:

Download "ARM HOW-TO GUIDE Interfacing GLCD with LPC2148 ARM"

Transcription

1 ARM HOW-TO GUIDE Interfacing GLCD with LPC2148 ARM

2 Contents at a Glance ARM7 LPC2148 Evaluation Board... 3 GLCD (Graphical Liquid Crystal Display)... 3 Interfacing GLCD... 4 Description of GLCD... 5 Interfacing GLCD with LPC Pin Assignment with LPC Circuit Diagram to Interface GLCD with LPC Source Code C Program to display a text in GLCD using LPC Testing the Graphical LCD Module with LPC General Information... 19

3 ARM7 LPC2148 Evaluation Board The ARM7 LPC2148 Evaluation board is specifically designed to help students to master the required skills in the area of embedded systems. The kit is designed in such way that all the possible features of the microcontroller will be easily used by the students. The kit supports in system programming (ISP) which is done through serial port. NXP s ARM7 (LPC2148), ARM Evaluation Kit is proposed to smooth the progress of developing and debugging of various designs encompassing of High speed 32-bit Microcontrollers. GLCD (Graphical Liquid Crystal Display) The Graphics LCD as the name suggests is a type of LCD which can display graphics. The graphical representation of any data presents good understanding than just characters. More user friendly applications can be designed by using the graphical LCDs.

4 Interfacing GLCD Fig. 1 shows how to interface the GLCD to microcontroller. The 128X64 Graphical LCD interfaces to adjust contrast through trim pot. The GLCD needed to create 8-bit interface; 8 data bits (D0 D7), three control lines, address bit (RS), read/write bit (R/W) and control signal (E), Page Select (CS). Fig. 1 Interfacing GLCD to Microcontroller

5 Description of GLCD The GLCD is divided into two parts which are controlled by two different controllers. Each of these parts is divided into rows and columns. To interface this GLCD with microcontroller, two registers (Input and Output register) are provided in the LCD. These registers are selected by the combination of RS and RW signals. These combinations are given in the following Table1. R/W RS Function L H L H L H Send Instruction Data Write (From Input Register to DDRAM) Status Check (Busy Read) Data Read (From DDRAM to Output Register) Input Register: Table1 Input Register is used while giving instructions and writing data to LCD. It holds the data/instruction temporarily before writing to DDRAM (Data Display RAM).

6 When the LCD is in active mode (CS1 and CS2 high), the Input register can be selected by sending bits on RS and RW pins as shown in the following table. The data of input register is latched in at the falling edge (from high to low) of EN (Enable) signal and written into DDRAM automatically through internal operation. Output Register: Output Register is used to read data from DDRAM and to check status data (busy check). When the LCD is in active mode (CS1 and CS2 high), the Output register can be selected by sending bits on RS and RW pins as shown in the following table. When R/W and RS are high, data is latched into output register and when R/W=H, RS=L, status data (busy check) can be read out. The basic operation with graphical LCD requires following steps: 1. LCD Initialization 2. Page Selection

7 3. Column Selection 4. Data Display All these steps have been explained in the following sections with corresponding instruction sets. 1. LCD Initialization Before displaying anything on graphics LCD, it must be initialized, i.e., display must be put on and column/page selection be made. This is achieved by giving proper instructions to the LCD. To make Display On\Off the following set of instructions must be followed in order: a) Put these values in Data Register DB7 DB6 DB5 DB4 DB3 DB2 DB1 DB D Data appears when D=1 and disappears when D=0. When the display is off, there is no effect on the data which is stored in DDRAM.

8 b) CS1=1, CS2=1(to activate display of both halves of LCD) c) RS=0, R/W=0 (to select the instruction mode) d) EN=1 e) Delay f) EN=0 (to latch data into the input register) Display on/off function can also be used to blink data continuously on the LCD by switching the display with some delay. 2. Page selection Before writing any data, the page of LCD must be selected. Page can be selected through following steps: a) Put these values in Data Register DB7 DB6 DB5 DB4 DB3 DB2 DB1 DB X3 X2 X1

9 Since there are a total of 8 pages (0 7), a particular page is selected by setting three bits (X1-X3). b) CS1=1, CS2=1(to activate display of both halves of LCD) c) RS=0, R/W=0 (to select the instruction mode) d) EN=1 e) Delay f) EN=0 (to latch data into the input register) For example, if X3=0, X2=1 and X1=0, and then the second page is selected. Reading or writing operation is done on this page until next page is set. Depending on the column selection, the page is selected from either left or right half of the graphics LCD. 3. Column selection There are 128 [64 (=2 6 ) columns per half] in graphics LCD and they are automatically incremented. This means that after selecting a column, it increases on its own by one, after each write cycle.

10 So it is easier to write data column by column. A column can be chosen through following instructions: a) Put these values in Data Register DB7 DB6 DB5 DB4 DB3 DB2 DB1 DB0 0 1 Y5 Y4 Y3 Y2 Y1 Y0 The corresponding controller (CS1 or CS2) is selected depending on the Column number as shown below.

11 b) RS=0, R/W=0 (to select the instruction mode) c) EN=1 d) Delay e) EN=0 (to latch data into the input register) For example, if Page address is 0 and Column address is 0, then 0 th column of page 0 is selected, i.e., the first pixel will be selected which is highlighted in the following diagram.

12 4. Display data After page and column selection, data can be sent to LCD for display. The programming steps for display data are as given below: a) Put the data values in Data Register. With every write cycle, data is written in one column and the column then gets auto-incremented. A high data bit (DBx = 1) corresponds to activated (dark) pixel and low data bit (DBx = 0) corresponds to deactivated (light) pixel. Here MSB corresponds to 8 th row in column and LSB to 1 st row of column. b) If column<63 then (CS1=1 & CS2=0) else (CS1=0 & CS2=1) c) RS=1 and R/W=0 (to select write mode of LCD) d) EN=1 e) Delay f) EN=0 (to latch data into the input register)

13 If data port is given value 0x99 or then column takes the values as shown below. The following points can be included in above programming steps for efficient programming: 1. While sending data to be written with array, one can specify the array limit as well. This limit signifies the number of columns one wants to write at once. If the limit is 8, eight columns will be written at once and if it is 7, seven columns will be written in one go. 2. The condition if (column >127) can be used to return the control back to the main function if the limit exceeds the number of columns present in the LCD. 3. The function for setting column should be called again if array limit condition doesn t fit in left page and has to be extended to right page too. 4. Though column address increases itself by one but one variable should be taken to check the conditions (ii) & (iii) explained above.

14 LCD DATA LINES CONTROL L LINES Interfacing GLCD with LPC2148 We now want to display a text in LPC2148 Evaluation Board by using GLCD module. In LPC2148 Evaluation Board contains the LCD and GLCD connections in a single header. The ARM7 LPC2148 Evaluation board has numbers of GLCD connections, connected with I/O Port lines (P1.18 P1.22 && P0.16 P0.23) to make GLCD display. Pin Assignment with LPC2148 GLCD/LCD LPC2148 LCD 128x64 GLCD Selection CS1 P1.18 CS2 P1.19 RS P1.20 R/W P1.21 JP LCD Select - GLCD E P1.22 RST P1.23 DB0 P0.16 DB1 P0.17 DB2 P0.18 DB3 P0.19 DB4 P0.20 DB5 P0.21 DB6 P0.22 DB7 P0.23

15 P0.15 P0.14 P0.13 P0.12 P0.11 P0.10 P0.9 P0.8 P0.7 P0.6 P0.5 P0.4 P0.3 P0.2 P0.1 P XTAL2 XTAL1 P0.15 P0.14 P0.13 P0.12 P0.11 P0.10 P0.9 P0.8 P0.7 P0.6 P0.5 P0.4 P0.3 P0.2 P0.1 P0.0 D- D+ VREF VDD1 VDD2 VDD3 VDDA P0.31 P0.30 P0.29 P0.28 P0.25 P1.16 P1.17 P1.24 P1.25 P1.26 P1.27 P1.28 P1.29 P1.30 P D- D+ P0.31 P0.30 P0.29 P0.28 P0.25 P1.16 P1.17 P1.23 P1.24 P1.25 P1.26 P1.27 P1.28 P1.29 P1.30 Circuit Diagram to Interface GLCD with LPC V LCD/GLCD +5V VBAT RST RTXC1 RTXC U5 VSS1 VSS2 VSS3 VSS4 VSS5 VSSA VBAT RESET RTXC1 RTXC2 P1.18 P1.19 P1.20 P1.21 P1.22 LPC2148 P0.16 P0.17 P0.18 P0.19 P0.20 P0.21 P0.22 P0.23 P J11 +5V R31 10K 1 3 RS R/W EN D0 D1 D2 D3 D4 D5 D6 D7 RST R36 CS1 CS2 10E +5V J GLCD 12MHz C14 X5 C15 22pf 22pf Source Code The Interfacing GLCD with LPC2148 program is very simple and straight forward, which display a text in 128 X 64 GLCD modules. Some delay is occurring when a single command / data is executed.

16 C Program to display a text in GLCD using LPC2148 *************************************************************************************** Title : Program to GLCD display *************************************************************************************** #include <lpc214x.h> #include "Glcd.h" #include "bmp_maska.h" #include "Utility.h" unsigned char ii; char *sometext; int main (void) { PINSEL0 = 0; PINSEL1 = 0; PINSEL2 &= 0x C; PINSEL2 = 0x ; DelayProc(0.2 * CCLOCK); IODIR0 = 0; Glcd_Init(&IOPIN1, // Control lines Port &IOPIN0, // Data Lines Port 18, // CS1# 19, // CS2# 20, // RS 21, // R/W# 23, // RST 22, // EN 16); // D0 data line position

17 } } while (1) { Glcd_Fill(0x00); Glcd_Image( maska_bmp ); DelayProc(2.0 * CCLOCK); Glcd_Fill(0x00); Glcd_Line(120,1, 5,60, 1); Glcd_Line(12,42, 5,60, 1); DelayProc(1.0 * CCLOCK); Glcd_Rectangle(12,20, 93,57, 1); DelayProc(1.0 * CCLOCK); Glcd_Line(120,12, 12,60, 1); DelayProc(1.0 * CCLOCK); for (ii = 1; ii <= 10; ii++) Glcd_Circle(63,32, 3*ii, 1); DelayProc(1.0 * CCLOCK); Glcd_Box(12,20, 70,57, 2); DelayProc(1.0 * CCLOCK); sometext = "BIG:ONE"; DelayProc(1.0 * CCLOCK); To compile the above C code you need the KEIL software. They must be properly set up and a project with correct settings must be created in order to compile the code. To compile the above code, the C file must be added to the project.

18 In Keil, you want to develop or debug the project without any hardware setup. You must compile the code for generating HEX file. In debugging Mode, you want to check the port output without microcontroller Evaluation Board. The Flash Magic software is used to download the hex file into your microcontroller through UART0. Testing the Graphical LCD Module with LPC2148 Give +3.3V power supply to LPC2148 Evaluation Board; the Graphical LCD is connected with microcontroller LPC2148 Board. When the program is downloading into LPC2148 in Evaluation Board, the screen should show the picture output. If you not reading any output from Graphical LCD, then you just check the jumper connections & adjust the trim pot level. Otherwise you just check it with debugging mode in Keil. If you want to see more details about debugging just see the videos in below link. How to Create & Debug a Project in Keil.

19 General Information For proper working use the components of exact values as shown in Circuit file. Wherever possible use new components. Solder everything in a clean way. A major problem arises due to improper soldering, solder jumps and loose joints. Use the exact value crystal shown in schematic. More instructions are available in following articles, User Manual of LPC2148 Evaluation Board. Interfacing LCD with LPC2148. Tutorial of how to create & Debug a project in Keil.

20 Did you enjoy the read? Pantech solutions creates information packed technical documents like this one every month. And our website is a rich and trusted resource used by a vibrant online community of more than 1, 00,000 members from organization of all shapes and sizes.

21 What do we sell? Our products range from Various Microcontroller development boards, DSP Boards, FPGA/CPLD boards, Communication Kits, Power electronics, Basic electronics, Robotics, Sensors, Electronic components and much more. Our goal is to make finding the parts and information you need easier and affordable so you can create awesome projects and training from Basic to Cutting edge technology.

ARM HOW-TO GUIDE Interfacing GLCD with LPC2148 ARM

ARM HOW-TO GUIDE Interfacing GLCD with LPC2148 ARM ARM HOW-TO GUIDE Interfacing GLCD with LPC2148 ARM Contents at a Glance ARM7 LPC2148 Primer Board... 3 GLCD (Graphical Liquid Crystal Display)... 3 Interfacing GLCD... 4 Interfacing GLCD with LPC2148...

More information

ARM HOW-TO GUIDE Interfacing Switch with LPC2148 ARM

ARM HOW-TO GUIDE Interfacing Switch with LPC2148 ARM ARM HOW-TO GUIDE Interfacing Switch with LPC48 ARM Contents at a Glance ARM7 LPC48 Primer Board... 3 Switch... 3 Interfacing Switch... 4 Interfacing Switch with LPC48... 5 Pin Assignment with LPC48...

More information

ARM HOW-TO GUIDE Interfacing 7SEG with LPC2148 ARM

ARM HOW-TO GUIDE Interfacing 7SEG with LPC2148 ARM ARM HOW-TO GUIDE Interfacing 7SEG with LPC2148 ARM Contents at a Glance ARM7 LPC2148 Slicker Board... 3 Seven Segment Display... 3 Interfacing Seven Segment Display... 4 Interfacing Seven Segment with

More information

ARM HOW-TO GUIDE Interfacing Relay with LPC2148 ARM

ARM HOW-TO GUIDE Interfacing Relay with LPC2148 ARM ARM HOW-TO GUIDE Interfacing Relay with LPC48 ARM Contents at a Glance ARM7 LPC48 Primer Board... Relay... Interfacing Relays... 4 Interfacing Relay with LPC48... 5 Pin Assignment with LPC48... 5 Circuit

More information

ARM HOW-TO GUIDE Interfacing Buzzer with LPC2148 ARM

ARM HOW-TO GUIDE Interfacing Buzzer with LPC2148 ARM ARM HOW-TO GUIDE Interfacing Buzzer with LPC2148 ARM Contents at a Glance ARM7 LPC2148 Primer Board... 3 Buzzer... 3 Interfacing Buzzer... 4 Interfacing Buzzer with LPC2148... 5 Pin Assignment with LPC2148...

More information

ARM HOW-TO GUIDE Interfacing Keypad with LPC2148 ARM

ARM HOW-TO GUIDE Interfacing Keypad with LPC2148 ARM ARM HOW-TO GUIDE Interfacing Keypad with LPC2148 ARM Contents at a Glance ARM7 LPC2148 Primer Board... 3 Keypad... 3 Interfacing keypad... 4 Interfacing keypad with LPC2148... 6 Pin Assignment with LPC2148...

More information

ARM HOW-TO GUIDE Interfacing Stepper Motor with LPC2148

ARM HOW-TO GUIDE Interfacing Stepper Motor with LPC2148 ARM HOW-TO GUIDE Interfacing Stepper Motor with LPC2148 Contents at a Glance ARM7 LPC2148 Slicker Board... 3 Stepper Motor... 3 Interfacing Stepper Motor... 4 Interfacing Stepper Motor with LPC2148...

More information

ARM HOW-TO GUIDE Interfacing GPS with LPC2148 ARM

ARM HOW-TO GUIDE Interfacing GPS with LPC2148 ARM ARM HOW-TO GUIDE Interfacing GPS with LPC2148 ARM Contents at a Glance ARM7 LPC2148 Primer Board... 3 GPS (Global Positioning Systems)... 3 Interfacing GPS... 4 Interfacing GPS with LPC2148... 5 Pin Assignment

More information

ARM HOW-TO GUIDE Interfacing I2C-7SEG with LPC2148 ARM

ARM HOW-TO GUIDE Interfacing I2C-7SEG with LPC2148 ARM ARM HOW-TO GUIDE Interfacing I2C-7SEG with LPC2148 ARM Contents at a Glance ARM7 LPC2148 Primer Board... 3 I2C (Inter Integrated Circuit)... 3 Seven Segment Display... 4 Interfacing I2C - Seven Segment

More information

Texas Instruments Microcontroller HOW-TO GUIDE Interfacing Keypad with MSP430F5529

Texas Instruments Microcontroller HOW-TO GUIDE Interfacing Keypad with MSP430F5529 Texas Instruments Microcontroller HOW-TO GUIDE Interfacing Keypad with MSP430F5529 Contents at a Glance PS PRIMER MSP430 kit... 3 Keypad... 4 Interfacing keypad... 4 Interfacing keypad with MSP430F5529...

More information

8085 HOW-TO GUIDE Interfacing 8251 with 8085

8085 HOW-TO GUIDE Interfacing 8251 with 8085 8085 HOW-TO GUIDE Interfacing 8251 with 8085 Contents at a Glance 8085 Trainer Board... 3 8251 (USART)... 3 Interfacing 8251 with 8085... 4 Pin Assignment with 8051... 5 Circuit Diagram to Interface 8251

More information

Evaluation board for NXP LPC2103. User Guide. Preliminary Version updated 27 th Aug TechToys Company All Rights Reserved

Evaluation board for NXP LPC2103. User Guide. Preliminary Version updated 27 th Aug TechToys Company All Rights Reserved Evaluation board for NXP LPC2103 User Guide 1 SOFTWARE Download from KEIL web site at http://www.keil.com/demo/ for ARM evaluation software. Limitations to this evaluation copy have been summarized on

More information

Lab Experiment 9: LCD Display

Lab Experiment 9: LCD Display Lab Experiment 9: LCD Display 1 Introduction Liquid Crystal Displays (LCDs) provide an effective way for processors to communicate with the outside world. The LPC2148 board used in the lab is equipped

More information

LCD. Configuration and Programming

LCD. Configuration and Programming LCD Configuration and Programming Interfacing and Programming with Input/Output Device: LCD LCD (liquid crystal display) is specifically manufactured to be used with microcontrollers, which means that

More information

EMBEDDED HARDWARE DESIGN. Tutorial Interfacing LCD with Microcontroller /I

EMBEDDED HARDWARE DESIGN. Tutorial Interfacing LCD with Microcontroller /I EMBEDDED HARDWARE DESIGN Tutorial Interfacing LCD with Microcontroller 2009-10/I LCD (Liquid Crystal Display) has become very popular option for displaying in Embedded Applications. Since they are very

More information

ﻢﯿﺣﺮﻟا ﻦﻤﺣﺮﻟا ﷲا ﻢﺴﺑ

ﻢﯿﺣﺮﻟا ﻦﻤﺣﺮﻟا ﷲا ﻢﺴﺑ بسم االله الرحمن الرحیم In the name of Allah 1 2 Graphical LCD for beginners and interfacing with PIC MCU By Eng. Mustafa H. Abyad Cairo, Egypt March 2009 Table of contents 3 Table of contents. 3 1. Introduction

More information

LPC1788 Mio Board. The functional details of the board are as follows-

LPC1788 Mio Board. The functional details of the board are as follows- INTRODUCTION : The LPC1788 Mio is based on Cortex M3 Core, running at up to 120MHz. The Mio lets you quickly start with your development on LPC1788 based designs. The functional details of the board are

More information

LPC1768 Industrial Reference Design Platform System Development Kit Version 1.3. May 2009

LPC1768 Industrial Reference Design Platform System Development Kit Version 1.3. May 2009 QuickStart Guide LPC1768 Industrial Reference Design Platform System Development Kit Version 1.3 May 2009 1.0 System Overview The LPC1768 Industrial Reference Design (IRD) is a platform targeted at RTOS

More information

Basic Input/Output Operations

Basic Input/Output Operations Basic Input/Output Operations Posted on May 9, 2008, by Ibrahim KAMAL, in Micro-controllers, tagged In this third part of the 89s52 tutorial, we are going to study the basic structure and configuration

More information

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 8051 Intermidiate Development Board Product Manual Contents 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 1. Overview 2. Features The board is built on a high quality FR-4(1.6

More information

LPC2468 Industrial Reference Design Platform System Development Kit Version 1.2. August 2008

LPC2468 Industrial Reference Design Platform System Development Kit Version 1.2. August 2008 QuickStart Guide LPC2468 Industrial Reference Design Platform System Development Kit Version 1.2 August 2008 1.0 System Overview The LPC2468 Industrial Reference Design (IRD) is a platform targeted at

More information

P89V51RD2 Development Board May 2010

P89V51RD2 Development Board May 2010 P89V51RD2 Development Board May 2010 NEX Robotics Pvt. Ltd. 1 P89V51RD2 Development Board Introduction: P89V51RD2 Development Board P89V51RD2 Development Board is a low cost development board which have

More information

LPC2148 DEV BOARD. User Manual.

LPC2148 DEV BOARD. User Manual. LPC2148 DEV BOARD User Manual www.coineltech.com www.coineltech.com Designed by CoiNel Technology Solutions LLP No-816, 2 nd Floor, 4 th B Cross, 9 th A Main, RPC Layout, Vijaynagar, Bangalore-560040 State:

More information

LABORATORY MANUAL Interfacing LCD 16x2, Keypad 4x4 and 7Segment Display to PIC18F4580

LABORATORY MANUAL Interfacing LCD 16x2, Keypad 4x4 and 7Segment Display to PIC18F4580 LABORATORY MANUAL Interfacing LCD 16x2, Keypad 4x4 and 7Segment Display to PIC18F458 1. OBJECTIVES: 1.1 To learn how to interface LCD 16x2, Keypad 4x4 and 7Segment Display to the microcontroller. 1.2 To

More information

Building the FlipChip Tester

Building the FlipChip Tester Building the FlipChip Tester 1. Assembly of the Core Board You will need a fine low-wattage soldering iron and a Voltmeter. Take your time to solder the components on the Core Board. Better to spend a

More information

CEIBO FE-5111 Development System

CEIBO FE-5111 Development System CEIBO FE-5111 Development System Development System for Atmel W&M T89C5111 Microcontrollers FEATURES Emulates Atmel W&M T89C5111 4K Code Memory Real-Time Emulation and Trace Frequency up to 33MHz/5V ISP

More information

LPC1788 Mio Board. User Manual. Revision 1.0 1

LPC1788 Mio Board. User Manual.     Revision 1.0 1 User Manual http://coineltech.com Revision 1.0 1 Designed by CoiNel Technology Solutions LLP No-32, 2 nd Floor, HAPBCO Tower, 9 th Main, RPC Layout, Hampinagar, Bangalore-560040 State: Karnataka Country:

More information

Lab 3 LCD Mar

Lab 3 LCD Mar Lab 3 LCD Mar. 2016 1 Objective 1. To be familiar with advanced output devices that can be connected to microcontroller. 2. To be able to work with many input/output devices together. Alphanumeric LCD

More information

Laboratory 3 Working with the LCD shield and the interrupt system

Laboratory 3 Working with the LCD shield and the interrupt system Laboratory 3 Working with the LCD shield and the interrupt system 1. Working with the LCD shield The shields are PCBs (Printed Circuit Boards) that can be placed over the Arduino boards, extending their

More information

LCDs. Embedded Systems Interfacing. 20 September 2011

LCDs. Embedded Systems Interfacing. 20 September 2011 20 September 2011 How Polarizers Work How work How Color Work Other Technologies Reflective Nematic (no back light) Cholesteric Liquid Crystal Organic LED/Polymer LED Vacuum Florescent Display Display

More information

ecee NXP LPC 2138 ARM Development Board

ecee NXP LPC 2138 ARM Development Board ecee NXP LPC 38 ARM Development Board User Manual Rhydo Technologies (P) Ltd. (An ISO 900:008 Certified R&D Company) Golden Plaza, Chitoor Road, Cochin 6808, Kerala State, India Phone : 009-484-370444,

More information

CoiNel Technology Solutions LLP. LPC2148 ARTIST Instruction Manual LPC2148 ARTIST. Instruction manual. Revision 1

CoiNel Technology Solutions LLP. LPC2148 ARTIST Instruction Manual LPC2148 ARTIST. Instruction manual.   Revision 1 LPC2148 ARTIST Instruction manual Designed by CoiNel Technology Solutions LLP No-816, 2 nd Floor, 4 th B Cross, 9 th A Main, RPC Layout, Vijaynagar, Bangalore-560040 State: Karnataka Country: India www.coineltech.com

More information

EM-LPC1700 Evaluation Board User Manual V1.2

EM-LPC1700 Evaluation Board User Manual V1.2 EM-LPC1700 Evaluation Board User Manual V1.2 EMBEST CO., LIMITED Address:Room 509, Luohu Science & Technology Building, #85 Taining Road, Shenzhen, Guangdong, China 518020 Telephone: 0086-755-25621715

More information

CLCD1 Serial 1 wire RS232 LCD development board

CLCD1 Serial 1 wire RS232 LCD development board CLCD1 Serial 1 wire RS232 LCD development board Can be used with most 14 pin HD44780 based character LCD displays Use with 1,2,3 or 4 line displays. (Four line LCD shown above) Shown assembled with optional

More information

Future Designs, Inc. Your Development Partner LCD DEMO KITS

Future Designs, Inc. Your Development Partner   LCD DEMO KITS Future Designs, Inc. Your Development Partner www.teamfdi.com LCD DEMO KITS LCD DEMO Kit Family LCD-DEMO-KIT LCD-DEMO-SC LCD-DEMO-LPC2158 LCD-DEMO-Family Each kit uses a multiplexed 8 digit liquid crystal

More information

DEV-1 HamStack Development Board

DEV-1 HamStack Development Board Sierra Radio Systems DEV-1 HamStack Development Board Reference Manual Version 1.0 Contents Introduction Hardware Compiler overview Program structure Code examples Sample projects For more information,

More information

8051 Advance Trainer

8051 Advance Trainer wwwembeddedmarketcom 0 Advance Trainer On Board Features of 0 AdvanceTrainer with PVRD Microcontroller RS interface KHZ RC IR receiver Buzzer Light Sensor (LDR) Temperature Sensor Three Analog Inputs via

More information

SWITCH 10 KILOHM RESISTOR 220 OHM RESISTOR POTENTIOMETER LCD SCREEN INGREDIENTS

SWITCH 10 KILOHM RESISTOR 220 OHM RESISTOR POTENTIOMETER LCD SCREEN INGREDIENTS 11 SWITCH 10 KILOHM RESISTOR 220 OHM RESISTOR POTENTIOMETER LCD SCREEN INGREDIENTS 115 CRYSTAL BALL CREATE A CRYSTAL BALL TO TELL YOUR FUTURE Discover: LCD displays, switch/case statements, random() Time:

More information

Interfacing GLCD(128x64) with PIC16F877A

Interfacing GLCD(128x64) with PIC16F877A Interfacing GLCD(128x64) with PIC16F877A In this tutorial we will see how to interface and graphical LCD(GLCD) with PIC16F877A. In this tutorial we will look at interfacing KS0108 controller based JHD12864E

More information

Application Note. Interfacing to a Graphics LCD from PSoC. Summary This Application Note describes how to control a graphic LCD in a PSoC application.

Application Note. Interfacing to a Graphics LCD from PSoC. Summary This Application Note describes how to control a graphic LCD in a PSoC application. Application Note AN2147 Interfacing to a Graphics LCD from PSoC Author: Pham Minh Tri Associated Projects: Yes Associated Part Family: CY8C27xxx PSoC Designer Version: 4.0 Associated Application Notes:

More information

Product Information. Features. Table of Contents EA DIP162 DN3LW EA DIP162 DHNLED EA DIP162 DNLED EA DIP162J DN3LW

Product Information. Features. Table of Contents EA DIP162 DN3LW EA DIP162 DHNLED EA DIP162 DNLED EA DIP162J DN3LW LCD Module with included HD44780 controller Product Information EA DIP162 DNLED EA DIP162 DHNLED EA DIP162 DN3LW EA DIP162J DN3LW LCD Module with two 16-character rows 6.68mm in height Same as previous,

More information

Objectives : 1) To study the typical design of a LCD module 2) To interface the digital display unit through parallel printer port using C# program.

Objectives : 1) To study the typical design of a LCD module 2) To interface the digital display unit through parallel printer port using C# program. Experiment 6 : Digital Display (Liquid Crystal Display) Objectives : 1) To study the typical design of a LCD module 2) To interface the digital display unit through parallel printer port using C# program.

More information

GIE 8051 Professional Kit. User Manual

GIE 8051 Professional Kit. User Manual GIE 8051 Professional Kit User Manual www.gie.com.my Page 1 of 9 Content Overview...3 Features...3 Function Block...4 Jumper Setting...4 Hardware Connection...5 Required Software...5 Install CH340 Driver

More information

The industrial technology is rapidly moving towards ARM based solutions. Keeping this in mind, we are providing a Embedded ARM Training Suite.

The industrial technology is rapidly moving towards ARM based solutions. Keeping this in mind, we are providing a Embedded ARM Training Suite. EMBEDDED ARM TRAINING SUITE ARM SUITE INCLUDES ARM 7 TRAINER KIT COMPILER AND DEBUGGER THROUGH JTAG INTERFACE PROJECT DEVELOPMENT SOLUTION FOR ARM 7 e-linux LAB FOR ARM 9 TRAINING PROGRAM INTRODUCTION

More information

EPM900 - Overview. Features. Technical Data

EPM900 - Overview. Features. Technical Data Page 1 of 25 EPM900 - Overview The Keil EPM900 supports in-circuit debugging and parallel Flash ROM programming for the Philips P89LPC9xx device family. EPM900 connects directly to the µvision2 Debugger

More information

DS Presented by: Date:

DS Presented by: Date: DS2864-6 DS2864-6 Presented by: Date: /4 DS2864-6 CONTENTS COVER CONTENTS 2 MECHANICAL SPECIFICATIONS & FEATURES 3 PINS CONNECTION 3 EXTERNAL DIMENSION 4 ABSOLUTE MAXIMUM RATINGS 5 BLOCK DIAGRAM 5 ELECTRICAL

More information

Lab 5: LCD and A/D: Digital Voltmeter

Lab 5: LCD and A/D: Digital Voltmeter Page 1/5 OBJECTIVES Learn how to use C (as an alternative to Assembly) in your programs. Learn how to control and interface an LCD panel to a microprocessor. Learn how to use analog-to-digital conversion

More information

FiO Lite Datasheet FEATURES SAMPLE APPLICATIONS. FiO Lite

FiO Lite Datasheet FEATURES SAMPLE APPLICATIONS. FiO Lite FiO Lite Datasheet FEATURES Built-in RapidSTM native-support bootloader. ARM -bits Cortex TM M Processor (STMF0R) - 0MIPS maximum speed - 0 KBytes SRAM - 5 GPIO - channels -bit, µs ADC - USART, SPI, I

More information

Lab 5: LCD and A/D: Digital Voltmeter

Lab 5: LCD and A/D: Digital Voltmeter Page 1/5 OBJECTIVES Learn how to use C (as an alternative to Assembly) in your programs. Learn how to control and interface an LCD panel to a microprocessor. Learn how to use analog-to-digital conversion

More information

Display Real Time Clock (RTC) On LCD. Version 1.2. Aug Cytron Technologies Sdn. Bhd.

Display Real Time Clock (RTC) On LCD. Version 1.2. Aug Cytron Technologies Sdn. Bhd. Display Real Time Clock (RTC) On LCD PR12 Version 1.2 Aug 2008 Cytron Technologies Sdn. Bhd. Information contained in this publication regarding device applications and the like is intended through suggestion

More information

Diploma in Embedded Systems

Diploma in Embedded Systems Diploma in Embedded Systems Duration: 5 Months[5 days a week,3 hours a day, Total 300 hours] Module 1: 8051 Microcontroller in Assemble Language Characteristics of Embedded System Overview of 8051 Family

More information

LCD Module User Manual

LCD Module User Manual LCD Module User Manual Customer : Ordering Code : GC1602D-01XA0 DRAWING NO : m- Approved By Customer: Date: Approved By Checked By Prepared By GEMINI Technology Co, Ltd ADD: RM1521 Investel, 1123-2 Sanbon-Dong,

More information

AVR Peripheral Board. Campus Component Pvt. Ltd.

AVR Peripheral Board. Campus Component Pvt. Ltd. AVR Peripheral Board Campus Component Pvt. Ltd. DISCLAIMER Information furnished is believed to be accurate and reliable at the time of publication. However, Campus Component Pvt. Ltd. assumes no responsibility

More information

Bolt 18F2550 System Hardware Manual

Bolt 18F2550 System Hardware Manual 1 Bolt 18F2550 System Hardware Manual Index : 1. Overview 2. Technical specifications 3. Definition of pins in 18F2550 4. Block diagram 5. FLASH memory Bootloader programmer 6. Digital ports 6.1 Leds and

More information

acret Ameya Centre for Robotics & Embedded Technology Syllabus for Diploma in Embedded Systems (Total Eight Modules-4 Months -320 Hrs.

acret Ameya Centre for Robotics & Embedded Technology Syllabus for Diploma in Embedded Systems (Total Eight Modules-4 Months -320 Hrs. acret Ameya Centre for Robotics & Embedded Technology Syllabus for Diploma in Embedded Systems (Total Eight Modules-4 Months -320 Hrs.) Module 0 Introduction Introduction to Embedded Systems, Real Time

More information

CONTENTS. dspicpro4 KEY FEATURES 4 CONNECTING THE SYSTEM 5 INTRODUCTION 6

CONTENTS. dspicpro4 KEY FEATURES 4 CONNECTING THE SYSTEM 5 INTRODUCTION 6 CONTENTS dspicpro4 KEY FEATURES 4 CONNECTING THE SYSTEM 5 INTRODUCTION 6 Switches and Jumpers 7 MCU Sockets 8 Power Supply 10 On-Board USB 2.0 Programmer 11 MikroICD 12 RS-232 Communication Circuit 13

More information

MegaAVR-DEVelopment Board Progressive Resources LLC 4105 Vincennes Road Indianapolis, IN (317) (317) FAX

MegaAVR-DEVelopment Board Progressive Resources LLC 4105 Vincennes Road Indianapolis, IN (317) (317) FAX MegaAVR-DEVelopment Board Progressive Resources LLC 4105 Vincennes Road Indianapolis, IN 46268 (317) 471-1577 (317) 471-1580 FAX http://www.prllc.com GENERAL The MegaAVR-Development board is designed for

More information

8051 Basic Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help

8051 Basic Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 8051 Basic Development Board Product Manual Contents 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 1. Overview 2. Features The board is built on a high quality FR-4(1.6

More information

Phi-panel backpack assembly and keypad options Dr. John Liu 12/16/2012

Phi-panel backpack assembly and keypad options Dr. John Liu 12/16/2012 Phi-panel backpack assembly and keypad options Dr. John Liu 12/16/2012 1. Introduction:... 3 Currently available:... 3 2. Backpack assembly... 4 3. Connecting to a keypad... 6 4. Rotary encoder keypads...

More information

2 in 1. BigAVR User s Manual AVR. MikroElektronika. Software and Hardware solutions for Embedded World

2 in 1. BigAVR User s Manual AVR. MikroElektronika. Software and Hardware solutions for Embedded World SOFTWARE AND HARDWARE SOLUTIONS FOR THE EMBEDDED WORLD - Books - Compilers User s Manual 2 in 1 USB 2.0 IN-CIRCUIT PROGRAMMER ATMEL AVR DEVELOPMENT BOARD With useful implemented peripherals, plentiful

More information

AZ DISPLAYS, INC. SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY DATE: July 1, Page 1 of 13

AZ DISPLAYS, INC. SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY DATE: July 1, Page 1 of 13 AZ DISPLAYS, INC. SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY PART NUMBER: DATE: AGM1248A July 1, 2005 Page 1 of 13 1.0 INTRODUCTION This specification includes the outside dimensions, optical characteristics,

More information

RFID: Read and Display V2010. Version 1.1. Sept Cytron Technologies Sdn. Bhd.

RFID: Read and Display V2010. Version 1.1. Sept Cytron Technologies Sdn. Bhd. PR8-B RFID: Read and Display V2010 Version 1.1 Sept 2010 Cytron Technologies Sdn. Bhd. Information contained in this publication regarding device applications and the like is intended through suggestion

More information

NFC NUTSHELL KIT. MCU Modules USER MANUAL REVISION GMMC GmbH Keywords Abstract. Document information

NFC NUTSHELL KIT. MCU Modules USER MANUAL REVISION GMMC GmbH   Keywords Abstract. Document information USER MANUAL REVISION 1.23 Document information Info Keywords Abstract Content User Manual GMMC This document describes how to use of the GMMC s NFC Nutshell KIT and its related tools GMMC GmbH www.gmmc-biz.com

More information

Flash Magic Application Note 4 What to do if ISP Does Not Work Embedded Systems Academy 2003, All Rights Reserved

Flash Magic Application Note 4 What to do if ISP Does Not Work Embedded Systems Academy 2003, All Rights Reserved Flash Magic Application Note 4 What to do if ISP Does Not Work Embedded Systems Academy 2003, All Rights Reserved 1. Introduction This application note describes steps to take and items to check when In-System

More information

Getting Started with STK200 Dragon

Getting Started with STK200 Dragon Getting Started with STK200 Dragon Introduction This guide is designed to get you up and running with main software and hardware. As you work through it, there could be lots of details you do not understand,

More information

Document status: Preliminary

Document status: Preliminary LPC1788-32 OEM Board Feature Highlights The LPC1788-32 OEM Board provides a quick and easy solution for implementing a high-performance ARM Cortex-M3 based design around the LPC1788 from NXP. Build around

More information

POTENTIOMETER. Revision Class. Instructor / Professor LICENSE

POTENTIOMETER. Revision Class. Instructor / Professor LICENSE CME-11E9 EVBU LAB EXPERIMENT POTENTIOMETER Revision 03.11.13 Class Instructor / Professor LICENSE You may use, copy, modify and distribute this document freely as long as you include this license and the

More information

AN1745. Interfacing the HC705C8A to an LCD Module By Mark Glenewinkel Consumer Systems Group Austin, Texas. Introduction

AN1745. Interfacing the HC705C8A to an LCD Module By Mark Glenewinkel Consumer Systems Group Austin, Texas. Introduction Order this document by /D Interfacing the HC705C8A to an LCD Module By Mark Glenewinkel Consumer Systems Group Austin, Texas Introduction More and more applications are requiring liquid crystal displays

More information

OLED Engineering Kits User Manual

OLED Engineering Kits User Manual OLED Engineering Kits User Manual Revision C Firmware Version 1.X NKK SWITCHES 7850 E. Gelding Drive Scottsdale, AZ 85260 Toll Free 1-877-2BUYNKK (877-228-9655) Phone 480-991-0942 Fax 480-998-1435 e-mail

More information

Adafruit Metro Mini. Created by lady ada. Last updated on :12:28 PM UTC

Adafruit Metro Mini. Created by lady ada. Last updated on :12:28 PM UTC Adafruit Metro Mini Created by lady ada Last updated on 2018-01-24 08:12:28 PM UTC Guide Contents Guide Contents Overview Pinouts USB & Serial converter Microcontroller & Crystal LEDs Power Pins & Regulators

More information

Evaluation board for NXP LPC2103 USE GNU ARM UNDER KEIL IDE

Evaluation board for NXP LPC2103 USE GNU ARM UNDER KEIL IDE Evaluation board for NXP LPC2103 USE GNU ARM UNDER KEIL IDE 1 INTRODUCTION Evaluation version of RealView limits to 16KB of code size. However, the GNU ARM tools (compiler, assembler, and so on) that are

More information

DEMO9S08LG32 Up to 5V MCU with integrated LCD display driver

DEMO9S08LG32 Up to 5V MCU with integrated LCD display driver DEMO9S08LG32 Quick Start Guide Quick Start Guide DEMO9S08LG32 Up to 5V MCU with integrated LCD display driver Quick Start Guide Lab Tutorial CodeWarrior Manual Getting Started CD Get to Know the DEMO9S08LG32

More information

DATA SHEET. PCF2113x LCD controller/driver INTEGRATED CIRCUITS Apr 04

DATA SHEET. PCF2113x LCD controller/driver INTEGRATED CIRCUITS Apr 04 INTEGRATED CIRCUITS DATA SHEET Supersedes data of 1996 Oct 21 File under Integrated Circuits, IC12 1997 Apr 04 CONTENTS 1 FEATURES 2 APPLICATIONS 3 GENERAL DESCRIPTION 4 ORDERING INFORMATION 5 BLOCK DIAGRAM

More information

ECE 254/MTE241 Lab1 Tutorial Keil IDE and RL-RTX Last updated: 2012/09/25

ECE 254/MTE241 Lab1 Tutorial Keil IDE and RL-RTX Last updated: 2012/09/25 Objective ECE 254/MTE241 Lab1 Tutorial Keil IDE and RL-RTX Last updated: 2012/09/25 This tutorial is to introduce the Keil µvision4 IDE and Keil RL-RTX. Students will experiment with inter-process communication

More information

ELCT501 Digital System Design Winter Tutorial #11 FPGA Complete Design Flow with LCD Example

ELCT501 Digital System Design Winter Tutorial #11 FPGA Complete Design Flow with LCD Example ELCT501 Digital System Design Winter 2014 Tutorial #11 FPGA Complete Design Flow with LCD Example Design a 4-bit Up-Counter with Enable Design Flow Steps: 1. Write VHDL code for the counter. 2. Test the

More information

MULTISENSOR SYSTEM USING LPC2148 MICROCONTROLLER

MULTISENSOR SYSTEM USING LPC2148 MICROCONTROLLER MULTISENSOR SYSTEM USING LPC2148 MICROCONTROLLER A thesis submitted in partial fulfillment of the requirement for the degree of Bachelor of Technology in Electronics and Communication engineering By Prashant

More information

Interfacing Graphics LCD (GLCD)

Interfacing Graphics LCD (GLCD) Indian Institute of Technology Bombay CS684/CS308 Embedded Systems Interfacing Graphics LCD (GLCD) E.R.T.S. Lab 1 Lab Objective The objective of this lab is to introduce you to interfacing 128x64 Graphics

More information

TL0313. LCD driver IC. Apr VER 0.0. lsi. ( 5.5V Specification ) 65COM / 132SEG DRIVER & CONTROLLER FOR STN LCD. TOMATO LSI Inc.

TL0313. LCD driver IC. Apr VER 0.0. lsi. ( 5.5V Specification ) 65COM / 132SEG DRIVER & CONTROLLER FOR STN LCD. TOMATO LSI Inc. LCD driver IC Apr. 2001 VER 0.0 lsi 65COM / 132SEG DRIVER & CONTROLLER ( 5.5V Specification ) FOR STN LCD TOMATO LSI Inc. 1. INTRODUCTION The is a driver and controller LSI for graphic dot-matrix liquid

More information

KIT 134. INTRODUCTION TO LCD S

KIT 134. INTRODUCTION TO LCD S The aim of this kit is to show how to use a 16x2 alphanumeric Liquid Crystal Display (LCD) with a PC. First we show how to connect it to the parallel port and echo and handle keyboard input. Then we show

More information

DOT MATRIX CHARACTER LCD MODULE USER S MANUAL

DOT MATRIX CHARACTER LCD MODULE USER S MANUAL DOT MATRIX CHARACTER LCD MODULE USER S MANUAL OPTREX CORPORATION Apollo Display Technologies Inc. 194-22 Morris Ave. Holtsville NY 11742 Phone: (516) 654-1143 Fax: (516) 654-1496 www.apollodisplays.com

More information

AXE131 OLED/LCD DRIVER KIT

AXE131 OLED/LCD DRIVER KIT AXE131 OLED/LCD DRIVER KIT AXE131 Serial Driver Kit (no display supplied) AXE131Y Serial OLED Kit (8x2 yellow on black OLED display) Introduction: The serial OLED/LCD module allows PICAXE microcontroller

More information

melabs Serial LCD Firmware Version 1.0 2/7/07

melabs Serial LCD Firmware Version 1.0 2/7/07 melabs Serial LCD Firmware Version 1.0 2/7/07 The melabs Serial LCD (SLCD) can display serial data from either asynchronous RS232-style or synchronous I 2 C input. A range of baud rates from 2400 to 57,600

More information

ET-JR ARM7 LPC2214 Development Board

ET-JR ARM7 LPC2214 Development Board ET-JR ARM7 LPC Development Board ET-JR ARM7 LPC which is a Microcontroller Board ARM7TDMI- S Core uses Microcontroller 6/-Bit PIN. There s many I/O and it uses MCU No.LPC from PHILIPS to be permanent MCU

More information

Lecture (03) PIC16F84 (2)

Lecture (03) PIC16F84 (2) Lecture (03) PIC16F84 (2) By: Dr. Ahmed ElShafee ١ PIC16F84 has a RISC architecture, or Harvard architecture in another word ٢ PIC16F84 belongs to a class of 8 bit microcontrollers of RISC architecture.

More information

Embedded Systems and Software. LCD Displays

Embedded Systems and Software. LCD Displays Embedded Systems and Software LCD Displays Slide 1 Some Hardware Considerations Assume we want to drive an LED from a port. The AVRs can either source or sink current. Below is a configuration for sourcing.

More information

8051 General Purpose Board

8051 General Purpose Board 8051 General Purpose Board CAMPUS COMPONENT Pvt. Ltd. www.campuscomponent.com 1 DISCLAIMER Information furnished is believed to be accurate and reliable at the time of publication. However, Campus Component

More information

AUTOMATIC RESTAURANT ORDER SYSTEM USING ZIGBEE

AUTOMATIC RESTAURANT ORDER SYSTEM USING ZIGBEE AUTOMATIC RESTAURANT ORDER SYSTEM USING ZIGBEE * Prof. A. K. Lodhi, H.O.D, ECT, Aditya Engineering, Beed * Praveen Baburao Kamble, ME ECT Student, Aditya Engineering, Beed INTRODUCTION Automation is the

More information

PIC 28 Pin Board Documentation. Update Version 5.0

PIC 28 Pin Board Documentation. Update Version 5.0 PIC 28 Pin Board Documentation Update 2009.10 Version 5.0 Table of Contents PIC 28 Pin Board Documentation... 1 Table of Contents... 2 Introduction... 3 Circuit Schematic... 4 The following is the Circuit

More information

Exclusive 2.5 GHz Frequency Counter

Exclusive 2.5 GHz Frequency Counter Exclusive 2.5 GHz Frequency Counter with blue 2 x 16 LCD display This manual will guide you how to assemble, test and tune this frequency counter KIT. Features: Frequency range from 5 MHz to 2.5GHz Factory

More information

8051 Microcontroller Interrupts

8051 Microcontroller Interrupts 8051 Microcontroller Interrupts There are five interrupt sources for the 8051, which means that they can recognize 5 different events that can interrupt regular program execution. Each interrupt can be

More information

Chapter 4. Enhancing ARM7 architecture by embedding RTOS

Chapter 4. Enhancing ARM7 architecture by embedding RTOS Chapter 4 Enhancing ARM7 architecture by embedding RTOS 4.1 ARM7 architecture 4.2 ARM7TDMI processor core 4.3 Embedding RTOS on ARM7TDMI architecture 4.4 Block diagram of the Design 4.5 Hardware Design

More information

JE-AN ELECTRONICS CO.,LTD. Spec. No: WG240128A

JE-AN ELECTRONICS CO.,LTD. Spec. No: WG240128A JEAN ELECTRONICS CO.,LTD. Spec. No: WG240128A LCD Module Specification 1.0 Table of Contents Page 1. Cover & Contents 1 2. Record of revision 2 3. General specification 3 4. Absolute maximum ratings 4

More information

melabs Serial LCD Firmware Version 1.1 3/5/07

melabs Serial LCD Firmware Version 1.1 3/5/07 melabs Serial LCD Firmware Version 1.1 3/5/07 The melabs Serial LCD (SLCD) can display serial data from either asynchronous RS232-style or synchronous I 2 C input. A range of baud rates from 2400 to 57,600

More information

AC/DC Adapter. Figure 1. Hardware Setup

AC/DC Adapter. Figure 1. Hardware Setup C8051F12X DEVELOPMENT KIT USER S GUIDE 1. Kit Contents The C8051F12x Development Kit contains the following items: C8051F120 Target Board Serial Adapter (RS232 to Target Board Debug Interface Protocol

More information

Demo 17 - Receiving data from Host through Serial Port. Introduction:

Demo 17 - Receiving data from Host through Serial Port. Introduction: Introduction: This demo program gives an idea about receiving data from the host using the serial port in asynchronous mode at 500 baud using serial port 0. The received data will be stored in the RAM

More information

SSD1803. Product Preview. 100 x 34 STN LCD Segment / Common Mono Driver with Controller

SSD1803. Product Preview. 100 x 34 STN LCD Segment / Common Mono Driver with Controller SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA Crystalfontz Thiscontrolerdatasheetwasdownloadedfrom htp:/www.crystalfontz.com/controlers/ SSD1803 Product Preview 100 x 34 STN LCD Segment / Common Mono Driver

More information

INTERFACING 16 2 LCD WITH 8051

INTERFACING 16 2 LCD WITH 8051 INTERFACING 16 2 LCD WITH 8051 LCD display is an inevitable part in almost all embedded projects and this article is about interfacing 16 2 LCD with 8051 microcontroller. Many guys find it hard to interface

More information

Parallel Display Specifications Revision 1.0

Parallel Display Specifications Revision 1.0 MOP-AL162A Parallel Display Specifications Revision 1.0 Revision History Revision Description Author 1.0 Initial Release Clark 0.2 Updates as per issue #333 Clark 0.1 Initial Draft Clark 1 Contents Revision

More information

LCD Module User Manual

LCD Module User Manual LCD Module User Manual Customer : MASS PRODUCTION CODE DRAWING NO : TC1602D-02WA0 : m-tc1602d-02wa0_a00 Approved By Customer: Date: Approved By Checked By Prepared By Vatronix Holdings Limited ADD:5F,No10

More information

Introduction 1. Liquid crystal display (16 characters by 2 rows) Contrast dial: turn the dial to adjust the contrast of the display (see page 5)

Introduction 1. Liquid crystal display (16 characters by 2 rows) Contrast dial: turn the dial to adjust the contrast of the display (see page 5) Welcome to the GENIE Serial LCD module. Introduction 1 The GENIE Serial LCD module allows GENIE-based projects to display messages on a 16 character by 2 row liquid crystal display (LCD). This worksheet

More information