ECE 4510/5530 Microcontroller Applications Week 9

Size: px
Start display at page:

Download "ECE 4510/5530 Microcontroller Applications Week 9"

Transcription

1 ECE 45/553 Microcontroller Applications Week 9 Dr. Bradley J. Bazuin Associate Professor Department of Electrical and Computer Engineering College of Engineering and Applied Sciences

2 Lab 7 & 8 Elements & Project 2 Midterm Exam LCD Display for Calculator SPI, ADC/DAC and Temperature Measurement SPI and ADC ECE 25 2

3 ECE 45/553 3

4 Problem See Lab 5, Task 2 midterm example problem This waveform is designed to support a stepper motor full stepping driving operation, so the phases must be sequential and exactly equal to /2 of the total period. Assume that you are using a 24 MHz Eclock and that the PWM signal frequencies should all be 5 khz. Hints : If the period count were a perfect multiple of 2 or 4, such as 4, each channel would be turned on for a count of 2 to create a perfect 2/4 duty cycle. Hint 2: While PWM. and PWM.5 are left aligned, does PWM.3 and PWM.7 look like they might be center aligned on a count of 2? If so, how do the period and duty cycle values differ? ECE 4 45/553

5 Midterm Example Problem PWMPRCLK = x44; // Prescale A and B by 6 (.5 MHz) PWMCLK = x; // Select A and B clocks PWMCTL = PSWAI PFRZ; // All 8 bit registers, stop clocks for W or F PWMCAE = CAE2; // PWM.2 is center aligned PWMCAE &= ~(CAE4 CAE); // PWM. and PWM.4 are left aligned PWMPOL = PPOL; // PWM. is positive polarity PWMPOL &= ~(PPOL2 PPOL4); // PWM.2 and PWM.4 are negative polarity PWMPER = 5; // Left aligned 5 count period ( khz) PWMPER2 = 75; // Center aligned 2 x 75 count period ( khz) PWMPER4 = 5; // Left aligned 5 count period ( khz) PWMDTY = 5; // Positive 5/5 duty cycle PWMDTY2 = 5; // Centered Negative (755)/75 duty cycle PWMDTY4 = ; // Negative (5)/5 duty cycle PWME = (PWME PWME2 PWME4); //Enable channel, 2 and 4 ECE 45/553 5

6 Problem 2 See Lab 4, Task 4 for a single output compare operations. See Example 8.4 in the textbook and notes (Week5_) for a single output. The repeat period is to be 2 msec or 5 Hz with the sequential on times of 5 usec each. Compose the main() C program to initialize the ECT so that the sequence can be achieved and then wait in an infinite while loop. Four similar interrupt service routines are to be used to generate each of the on times for the four output compare timer channels. ECE 45/553 6

7 Example 8.4 Modified # include "mc9s2dp52.h" #define HiCnt 2 #define LoCnt 8 char HiorLo; void main (void) { asm( sei"); // disable interrupt globally timer_init(); asm("cli"); // enable interrupt globally timer5_start(); void timer_init(void) { TSCR = x9; // enable TCNT and fast timer flag clear TSCR2 = x3; // disable TCNT interrupt, set prescaler to 8 } TIOS = OC5; TFLG = xff; // enable OC5 function // clear all CxF flags while(); { asm( nop ); asm( nop ); } } interrupt void timer5_isr (void) { if(hiorlo){ TC5 += HiCnt; HiorLo = ; } else{ TC5 += LoCnt; HiorLo = ; } } void timer5_start(void) { extern char HiorLo; TCTL = xc; // set OC5 action to be pull high CFORC = x2; // Force pin action to high TFLG = xx2; // clear all C5F flags TCTL = x4; // set OC5 pin action to toggle TC5 = TCNT + HiCnt; // start an new OC5 operation HiorLo = ; // add LoCnt for the next OC5 operation TIE = x2; // enable OC5 interrupt locally } 7

8 Problem 3 (a) Initialization function: Use port H (PTH) for the control signals and port P (PTP) for the data signals. Provide a function call that sets data direction for all control signals and assumes that the data bus will be an input. Note: for bidirectional data buses, signals are not driven by any connected device until required. Therefore, at initialization the data bus should be an input. (b) Write LCD function: Based on the data write timing diagram, compose a Ccode function that pass an 8bit value to the function and execute a write. (c) Read LCD function: Based on the data read timing diagram, compose a Ccode function that reads an 8bit value and provide it as the return value for the function. ECE 45/553 8

9 LCD Read and Write Data Write Timing Table of Min/Max Required Times Time Item Symbol Min Max Unit Enable Cycle t CYCLE nsec Enable Pulse Width High Level t PWEH 45 nsec Enable Pulse Width Low Level t PWEL 35 nsec Address Setup Time (RS,R/Wn) t AS nsec Address Hold Time (RS,R/Wn) t AH nsec Data Setup Time t DSW nsec Data Hold Time t DHR 2 nsec Data Read Delay Time t DDR 9 nsec Data Read Timing ECE 45/553 9

10 LCD Operation The interface consists of three control signals and 8 parallel data bits. The control signals are register_select (RS), selecting control (low) or memory (high) registers, read/write_not (R/Wn), read or write operation select, and enable (E), the controller positive enable. The timing diagrams to perform a write and a read follow with times shown in the diagrams and table. Control: Port H (PTH), 3 pins RS Register Select = control=memory R/Wn Read/Write not = write =read E Enable = not enabled = enabled Data: Port P (PTP), 8 pins for 8 parallel bits ECE 45/553

11 LCD Initialization Port H has 3 outputs DDRH for 3 outputs. DDRP =? Initial condition of outputs. PTH =? RS don t care Read/Write not always in read when inactive Enable always when inactive DDRP for 8 bidirectional data lines Should be inputs whenever not actively requiring an output signal DDRP =? Is there anything else? ECE 45/553

12 Prototype Time Delays: Write ECE 45/553 t AS nsec min. 3 Eclock cycles t PWEH 45 nsec min Eclock cycles t AH nsec min. Eclock cycles t DSW nsec nom. 3 Eclock cycles t DHR 2 nsec min. Eclock cycles t DDR 9 nsec nom. 5 Eclock cycles t PWEL 35 nsec min 9Eclock cycles t CYCLE nsec min. 24 Eclock cycles ) RS & Wn 2) 3 nop 3) E Enable 4) 7 nop 5) DDRP, Data 6) 3 nop 7) E Disable 8) nop 9) all to steady state 2 (DDRP and R/Wn)

13 Prototype Time Delays: Read ECE 45/553 t AS nsec min. 3 Eclock cycles t PWEH 45 nsec min Eclock cycles t AH nsec min. Eclock cycles t DSW nsec nom. 3 Eclock cycles t DHR 2 nsec min. Eclock cycles t DDR 9 nsec nom. 5 Eclock cycles t PWEL 35 nsec min 9Eclock cycles t CYCLE nsec min. 24 Eclock cycles ) RS & read 2) 3 nop 3) E Enable 4) nop 5) PTP input 6) E Disable 7) nop 8) all to steady state 3

14 LCD INTERFACE ECE 45/553 4

15 LCD Display SSC2F6DLNW See Data Sheet Mechanical Electrical Timing Initialization sequence Controller IC Hitachi HD4478U Note: code in textbook is setup for a 4bit data, write only interface. Used on the Dragon demo board. p Textbook notes follow. ECE 45/553 5

16 A HD4478Based LCD Kit ( of 3) Display capability: 4 x 2 Uses the HD4478 as the controller as shown in Figure Pins DB7~DB are used to exchange data with the CPU. E input should be connected to one of the address decoder output or I/O pin. The RS signal selects instruction register () or data register (). The VEE signal allows the user to adjust the LCD contrast. The HD4478 can be configured to display line, 2line, and 4line information. The pin assignment for characterbased LCD module with less than and more than 8 characters are shown in Table 7.7 and 7.8. DB7 COM 6 LCDP (FRD769) DB E R/W RS V EE V CC V SS CONTROLLER LSI HD4478 SEG 4 4 SEG 6 SEGMENT DRIVER x 4 Figure 7.35 Block diagram of a HD4478based LCD kit

17 A HD4478Based LCD Kit (2 of 3) Table 7.7 Pin assignment for displays with less than 8 characters Pin No. symbol I/O Function VSS VCC VEE RS R/W E DB DB DB2 DB3 DB4 DB5 DB6 DB7 I I I I/O I/O I/O I/O I/O I/O I/O I/O Power supply (GND) Power supply (+5V) Contrast adjust = instruction input, = data input = write to LCD, = read from LCD enable signal data bus line data bus line data bus line 2 data bus line 3 data bus line 4 data bus line 5 data bus line 6 data bus line 7

18 Interfacing the HD4478 with the HCS2 One can treat the LCD kit as an I/O device and use an I/O port and several other I/O pins as control signals. The interface can be 4 bits or 8 bits. To read or write the LCD successfully, one must satisfy the timing requirements of the LCD. The timing diagrams for read and write are shown in Figure 7.37 and HCS2 MCU PK6 PK5 PK4 E R/W RS HD4478Ubased LCD Module V CC 5V 5V HCS2 MCU PK PK RS E HD4478Ubased LCD Module R/W V CC 5V 5V V EE V EE PH7...PH DB7..DB PK5...PK2 DB7..DB4 GND GND Figure 7.36a LCD interface example (8bit bus, used in SSE256) Figure 7.36b LCD interface example (4bit bus, used in Dragon2)

19 HD4478 Timing ( of 2) RS t AS t AH R/W PW EH t Ef E t Er t DDR t DHR DBDB7 Valid data t CYCLE Figure 7.37 HD4478U LCD controller read timing diagram RS t AS t AH R/W PW EH t Ef E t Er t DSW t H DBDB7 Valid data t CYCLE Figure 7.38 HD4478U LCD controller write timing diagram

20 HD4478 Timing ( of 2) Table 7.5 HD4478U bus timing parameters (2 MHz operation) Symbol Meaning Min Typ Max. Unit t CYCLE PW EH t Er, t Ef t AS t DDR t DSW t H t DHR t AH Enable cycle time Enable pulse width (high level) Enable rise and decay time Address setup time, RS, R/W, E Data delay time Data setup time Data hold time (write) Data hold time (read) Address hold time Procedure to send a command to the IR register Step Pull the RS and the E signals to low. Step 2 Pull the R/W signal to low. Step 3 Pull the E signal to high. Step 4 Output data to the output port attached to the LCD data bus. One needs to configure the I/O Port for output before writing data to the LCD kit. Step 5 Pull the E signal to low and make sure that the internal operation is complete ns ns ns ns ns ns ns ns ns

21 Registers of HD4478 The HD4478 has two 8bit user accessible registers: instruction register (IR) and data register (DR). To write data into display data RAM or character generator RAM, the MCU writes into the DR register. The address of the data RAM should be set up with a previous instruction. The DR register is also used for data storage when reading data from DDRAM or CGRAM. The HD4478 has a busy flag that is output from the DB7 pin. The HD4478 uses a 7bit address counter to keep track of the address of the next DDRAM or CGRAM location to be accessed. Table 7.2 Register selection RS R/W Operation IR write as an internal operation (display clear, etc) Read busy flag (DB7) and address counter (DB to DB6) DR write as an internal operation (DR to DDRAM or CGRAM) DR read as an internal operation (DDRAM or CGRAM to DR)

22 HD4478 Commands ( of 4) Table 7.9 HD4478U instruction set Code Instruction RS R/W B7 B6 B5 B4 B3 B2 B B Description Execution time Clear display Cursor home Entry mode set Display on/off control Cursor /display shift Function set Set CGRAM address Set DDRAM address Read busy flag and address counter Write CGRAM or DDRAM Read from CGRAM or DDRAM BF S/C R/L * DL N D F C * * I/D S B CGRAM address DDRAM address CGRAM/DDRAM address write data read data * * Clears display and returns cursor to the home position (address ). Returns cursor to home position (address ). Also returns display being shifted to the original position. DDRAM contents remain unchanged. Set cursor move direction (I/D), specifies to shift the display (S). These operations are performed during data read/write. Sets on/off of all display (D), cursor on/ off (C) and blink of cursor position character (B). Sets cursormove or display(s/c), shift direction (R/L). DDRAM contents remains unchanged. Sets interface data length (DL), number of display line (N) and character font (F). Sets the CGRAM address. CGRAM data is sent and received after this setting. Sets the DDRAM address. DDRAM data is sent and received after this setting. Reads busy flag (BF) indicating internal operation is being performed and reads CGRAM or DDRAM address counter contents (depending on previous instruction). Writes data to CGRAM or DDRAM. Reads data from CGRAM or DDRAM..64 ms.64 ms 4 s 4 s 4 s 4 s 4 s 4 s s 4 s 4 s

23 HD4478 Commands (2 of 4) Table 7. LCD instruction bit names Bit name I/D S D C B S/C R/L DL N F BF = decrement cursor position. = no display shift. = display off = cursor off = cursor blink off = move cursor = shift left = 4bit interface = /8 or / duty ( line) = 5x8 dots = can accept instruction Settings = increment cursor position = display shift = display on = cursor on = cursor blink on = shift display = shift right = 8bit interface = /6 duty (2 lines) = 5 x dots = internal operation in progress

24 HD4478 Commands (3 of 4) The HD4478 has a display data RAM (DDRAM) to store data to be displayed on the LCD. The address range of DDRAM for line, 2line, and 4line LCDs are shown in Table 7.a, 7.b, and 7.c. The HD4478 has a character generator ROM that can generates 5 8 or 5 character patterns from a 8bit code. The user can rewrite character patterns into the character generator RAM (CGRAM). Up to eight 5 8 patterns or four 5 patterns can be programmed. Table 7.a DDRAM address usage for a line LCD Display size Visible character positions DDRAM addresses * 8 * 6 * 2 * 24 * 32 * x..x7 x..xf x..x3 x..x7 x..xf x..x27

25 HD4478 Commands (4 of 4) Table 7.b DDRAM address usage for a 2line LCD Display size 2 * 6 2 * 2 2 * 24 2 * 32 2 * 4 Visible character positions DDRAM addresses x..xf + x4..x4f x..x3 + x4..x53 x..x7 + x4..x57 x..xf + x4..x5f x..x27 + x4..x67 Table 7.c DDRAM address usage for a 4line LCD Display size 4 * 6 4 * 2 4 * 4 Visible character positions on st controller and..39 on 2nd controller DDRAM addresses x..xf + x4..x4f + x4..x23 + x54..x63 x..x3 + x4..x53 + x4..x27 + x54..x67 x..x27 + x4..x67 on st controller and x..x27 + x4..x67 on 2nd controller

26 HD4478 Data Sheet This data sheet reads rather well to describe registers and the initialization procedure. ECE 45/553 26

The modules in this lab room are 4 line by 16 character display modules. The data sheet/users manual for the module is posted on My.Seneca.

The modules in this lab room are 4 line by 16 character display modules. The data sheet/users manual for the module is posted on My.Seneca. LCD Modules A common output display device used with low cost embedded systems is a character LCD display. The displays are available as complete modules with a standard microprocessor parallel interface.

More information

EE 308/MENG 483 Spring 2017

EE 308/MENG 483 Spring 2017 Exam II Review April 2017 Introduction to the MC9S12 Timer Subsystem The MC9S12 has a 16-bit counter that runs with a 24 MHz. The clock starts at 0x0000, counts up until it gets to 0xFFFF. It takes 2.7307

More information

16COM / 80SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD

16COM / 80SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD INTRODUCTION KS0070B is a dot matrix LCD driver & controller LSI which is fabricated by low power CMOS technology. It is capable of displaying 1 or 2 lines with the 5 7 format or 1 line with the 5 10 dots

More information

16COM / 40SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD

16COM / 40SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD INTRODUCTION KS0066U is a dot matrix LCD driver & controller LSI whichis fabricated by low power CMOS technology It can display 1or 2 lines with the 5 8 dots format or 1 line with the 5 11 dots format

More information

中显液晶 技术资料 中显控制器使用说明书 2009年3月15日 北京市海淀区中关村大街32号和盛大厦811室 电话 86 010 52926620 传真 86 010 52926621 企业网站.zxlcd.com

中显液晶 技术资料 中显控制器使用说明书 2009年3月15日 北京市海淀区中关村大街32号和盛大厦811室 电话 86 010 52926620 传真 86 010 52926621   企业网站.zxlcd.com http://wwwzxlcdcom 4 SEG / 6 COM DRIVER & CONTROLLER FOR DOT MATRIX LCD June 2 Ver Contents in this document are subject to change without notice No part of this document may be reproduced or transmitted

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

Item Symbol Standard Unit Power voltage VDD-VSS Input voltage VIN VSS - VDD

Item Symbol Standard Unit Power voltage VDD-VSS Input voltage VIN VSS - VDD SPECIFICATIONS OF LCD MODULE Features 1. 5x8 dots with cursor 2. Built-in controller (S6A0069 or equivalent) 3. Easy interface with 4-bit or 8-bit MPU 4. +5V power supply (also available for =3.0V) 5.

More information

16COM/40SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD

16COM/40SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD 6COM/4SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD INTRODUCTION is a dot matrix LCD driver & controller LSI which is fabricated by low power CMOS technology It can display, 2-line with 5 x 8 or 5 x dots

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

16COM/80SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD

16COM/80SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD 6COM/80SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD INTRODUCTION The is a dot matrix LCD driver & controller LSI which is fabricated by low power CMOS technology It is capable of displaying or 2 lines with

More information

LCM NHD-0440CI-YTBL. User s Guide. (Liquid Crystal Display Module) RoHS Compliant. For product support, contact NHD CI- Y- T- B- L-

LCM NHD-0440CI-YTBL. User s Guide. (Liquid Crystal Display Module) RoHS Compliant. For product support, contact NHD CI- Y- T- B- L- User s Guide NHD-0440CI-YTBL LCM (Liquid Crystal Display Module) RoHS Compliant NHD- 0440- CI- Y- T- B- L- Newhaven Display 4 Lines x 40 Characters C: Display Series/Model I: Factory line STN Yellow/Green

More information

LCM NHD-0440AZ-FSW -FBW. User s Guide. (Liquid Crystal Display Character Module) RoHS Compliant FEATURES

LCM NHD-0440AZ-FSW -FBW. User s Guide. (Liquid Crystal Display Character Module) RoHS Compliant FEATURES User s Guide NHD-0440AZ-FSW -FBW LCM (Liquid Crystal Display Character Module) RoHS Compliant FEATURES Display format: 4 Lines x 40 Characters (A) Display Series/Model (Z) Factory line (F) Polarizer =

More information

LMB202DBC LCD Module User Manual

LMB202DBC LCD Module User Manual LMB202DBC LCD Module User Manual Shenzhen TOPWAY Technology Co., Ltd. Rev. Descriptions Release Date 0.1 Prelimiay release 2005-03-01 URL Document Name LMB202DBC-Manual-Rev0.1.doc Page 1 of 11 Table of

More information

SPECIFICATIONS FOR LCD MODULE

SPECIFICATIONS FOR LCD MODULE SPECIFICATIONS FOR LCD MODULE CUSTOMER CUSTOMER PART NO. ORIENT DISPLAY NO. YHC162A-XX DESCRIPTION APPROVED BY DATE PREPARED BY CHECKED BY APPROVED BY PAGE 1 OF 22 DOCUMENT REVISION HISTORY: DATE PAGE

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

SPECIFICATIONS FOR LCD MODULE

SPECIFICATIONS FOR LCD MODULE SPECIFICATIONS FOR LCD MODULE CUSTOMER CUSTOMER PART NO. ORIENT DISPLAY NO. OD-AMC162A SERIES DESCRIPTION APPROVED BY DATE PREPARED BY CHECKED BY APPROVED BY PAGE 1 OF 23 DOCUMENT REVISION HISTORY: DATE

More information

SPECIFICATIONS FOR LCD MODULE

SPECIFICATIONS FOR LCD MODULE SPECIFICATIONS FOR LCD MODULE CUSTOMER CUSTOMER PART NO. ACMMI PART NO. OD-AMC164A SERIES DESCRIPTION APPROVED BY DATE PAGE 1 OF 23 DOCUMENT REVISION HISTORY: DATE PAGE DESCRIPTION 1999.8. 25.3. 25.12

More information

SPECIFICATIONS FOR LCD MODULE

SPECIFICATIONS FOR LCD MODULE 145 Royal Crest Court Unit 42 Markham, ON, Canada L3R 9Z4 Tel: 95-477-1166 Fax: 95-477-1782 http://www.orientdisplay.com SPECIFICATIONS FOR LCD MODULE CUSTOMER CUSTOMER PART NO. ACMMI PART NO. AMC161A

More information

USER S GUIDE ATM4004A

USER S GUIDE ATM4004A USER S GUIDE ATM4004A Liquid Crystal Display Module CONTENTS 1.0 Mechanical Diagram. 3 2.0 Absolute Maximum Ratings 4 3.0 Description of Terminals. 4 4.0 Optical Characteristics 5 5.0 Electrical Characteristics

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

Crystalfontz America, Inc.

Crystalfontz America, Inc. Crystalfontz America, Inc. CUSTOMER : MODULE NO.: CFAH22A-NGG-JP SALES BY APPROVED BY CHECKED BY PREPARED BY Crystalfontz America, Inc. 12412 East Saltese Avenue Spokane Valley, WA 99216-357 Phone: (888)

More information

Data Sheet. Tranma Alphanumeric dot matrix liquid crystal displays with backlighting ATTENTION

Data Sheet. Tranma Alphanumeric dot matrix liquid crystal displays with backlighting ATTENTION Data Pack F Issued September 2001 287-0536 Data Sheet Tranma Alphanumeric dot matrix liquid crystal displays with backlighting LED type - stock numbers 184-8538, 184-8544 184-8572, 184-8825, 184-8847 Intelligent,

More information

SPECIFICATION SALES BY APPROVED BY CHECKED BY PREPARED BY. Crystalfontz America, Inc East Saltese Avenue Spokane Valley, WA

SPECIFICATION SALES BY APPROVED BY CHECKED BY PREPARED BY. Crystalfontz America, Inc East Saltese Avenue Spokane Valley, WA Crystalfontz America, Inc. SPECIFICATION CUSTOMER : MODULE NO. CFAH162X-YYH-JP(Preliminary) SALES BY APPROVED BY CHECKED BY PREPARED BY ISSUED DATE: Crystalfontz America, Inc. 12412 East Saltese Avenue

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

SPECIFICATIONS FOR LCD MODULE

SPECIFICATIONS FOR LCD MODULE SPECIFICATIONS FOR LCD MODULE CUSTOMER CUSTOMER PART NO. ORIENT DISPLAY NO. OD- AMC24AR-B-B6NTDW-SP2 DESCRIPTION APPROVED BY DATE PREPARED BY CHECKED BY APPROVED BY Yao Jun Qiang DOCUMENT REVISION HISTORY:

More information

Alphanumeric LCD display module 24 characters by 2 line. General description

Alphanumeric LCD display module 24 characters by 2 line. General description МТ 24S2L Alphanumeric LCD display module 24 characters by 2 line General description MT 24S2L LCD display module is composed of LSI controller and LCD panel. КB1013VG6 controller manufactured by ANGSTREM

More information

unit: mm 3044B - QFP80A unit: mm QFP80D

unit: mm 3044B - QFP80A unit: mm QFP80D Ordering number: EN 3255C CMOS LSI LC7985NA, LC7985ND LCD Controller/Driver Overview Package Dimensions The LC7985 series devices are low-power CMOS ICs that incorporate dot-matrix character generator,

More information

Dot Matrix LCD Controller Driver

Dot Matrix LCD Controller Driver PF22-7 SED27F/D Dot Matrix LCD Controller Driver /, / or /6 Duty Dot Matrix Drive ROM 24 characters Built-in Character Generator ROM and RAM ( RAM characters ) Maximum Simultaneous Display of Characters

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

JUL. 27, 2001 Version 1.0

JUL. 27, 2001 Version 1.0 S SPLC782A 6COM/8SEG Controller/Driver JUL. 27, 2 Version. SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLOGY CO. is

More information

AZ DISPLAYS, INC. COMPLETE LCD SOLUTIONS SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY

AZ DISPLAYS, INC. COMPLETE LCD SOLUTIONS SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY AZ DISPLAYS, INC. COMPLETE LCD SOLUTIONS SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY PART NUMBER: ACM 4002E SERIES DATE: October 8, 2002 1.0 MECHANICAL SPECS ACM4002E SERIES LCD MODULE 1. Overall Module

More information

AZ DISPLAYS, INC. COMPLETE LCD SOLUTIONS SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY

AZ DISPLAYS, INC. COMPLETE LCD SOLUTIONS SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY AZ DISPLAYS, INC. COMPLETE LCD SOLUTIONS SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY PART NUMBER: ACM1602B (WHITE EDGELIGHT) SERIES DATE: APRIL 28, 2003 1.0 MECHANICAL SPECS 1. Overall Module Size 84.0mm(W)

More information

Number of Characters 20 characters x 4Lines - Module dimension 98.0 x 60.0 x 13.6(MAX) mm. View area 77.0 x 25.2 mm. Active area 70.4 x 20.

Number of Characters 20 characters x 4Lines - Module dimension 98.0 x 60.0 x 13.6(MAX) mm. View area 77.0 x 25.2 mm. Active area 70.4 x 20. 2.Precautions in use of LCD Modules (1)Avoid applying excessive shocks to the module or making any alterations or modifications to it. (2)Don t make extra holes on the printed circuit board, modify its

More information

AZ DISPLAYS, INC. COMPLETE LCD SOLUTIONS SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY

AZ DISPLAYS, INC. COMPLETE LCD SOLUTIONS SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY AZ DISPLAYS, INC. COMPLETE LCD SOLUTIONS SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY PART NUMBER: ACM 1602B SERIES DATE: August 9, 1999 1.0 MECHANICAL SPECS ACM1602B SERIES LCD MODULE 1. Overall Module Size

More information

Crystalfontz America, Inc.

Crystalfontz America, Inc. Crystalfontz America, Inc. CUSTOMER : MODULE NO.: CFAH22AAGHJP SALES BY APPROVED BY CHECKED BY PREPARED BY Crystalfontz America, Inc. 12412 East Saltese Avenue Spokane Valley, WA 99216357 Phone: (888)

More information

DM1620. Parameter Dimension Unit

DM1620. Parameter Dimension Unit Ordering number : ENN1778C DM1620 DM1620 16 Characters 2 Lines Liquid Crystal Dot Matrix Display Module Overview The DM1620 is an LCD dot matrix display module that consists of an LCD panel and controller

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

DISPLAYTRONIC A DIVISION OF ZE XIAMEN SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY

DISPLAYTRONIC A DIVISION OF ZE XIAMEN SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY DISPLAYTRONIC A DIVISION OF ZE XIAMEN SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY PART NUMBER: ACM 1602K SERIES DATE: August 9, 1999 1.0 MECHANICAL SPECS 1. Overall Module Size 80.0mm(W) x 36.0mm(H) x max

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

The MC9S12 Input Capture Function

The MC9S12 Input Capture Function The MC9S12 Input Capture Function The MC9S12 allows you to capture the time an external event occurs on any of the eight Port T PTT pins An external event is either a rising edge or a falling edge To use

More information

EE 308 Spring Exam 1 Feb. 27

EE 308 Spring Exam 1 Feb. 27 Exam 1 Feb. 27 You will be able to use all of the Motorola data manuals on the exam. No calculators will be allowed for the exam. Numbers Decimal to Hex (signed and unsigned) Hex to Decimal (signed and

More information

RW1062 INTRODUCTION FUNCTIONS FEATURES. Crystalfontz. Thiscontrolerdatasheetwasdownloadedfrom htp:/www.crystalfontz.

RW1062 INTRODUCTION FUNCTIONS FEATURES. Crystalfontz. Thiscontrolerdatasheetwasdownloadedfrom htp:/www.crystalfontz. Crystalfontz Thiscontrolerdatasheetwasdownloadedfrom htp:/www.crystalfontz.com/controlers/ RW1062 INTRODUCTION RW1062 is a LCD driver & controller LSI which is fabricated by low power CMOS technology.

More information

LCD MODULE DEM SBH-PW-N

LCD MODULE DEM SBH-PW-N DISPLAYElektronik GmbH LCD MODULE DEM 16481 SBH-PW-N Version: 7.1.1 01.09.2008 GENERAL SPECIFICATION MODULE NO. : DEM 16481 SBH-PW-N VERSION NO. CHANGE DESCRIPTION DATE 0 ORIGINAL VERSION 13.12.2002 1

More information

Item Dimension Unit Number of Characters 16 characters x 2 Lines -

Item Dimension Unit Number of Characters 16 characters x 2 Lines - 2.Precautions in use of LCD Modules (1)Avoid applying excessive shocks to the module or making any alterations or modifications to it. (2)Don t make extra holes on the printed circuit board, modify its

More information

LCD MODULE DEM SBH-PW-N

LCD MODULE DEM SBH-PW-N DISPLAY Elektronik GmbH LCD MODULE DEM 16228 SBH-PW-N Version: 3 09/Oct/2008 GENERAL SPECIFICATION MODULE NO. : DEM 16228 SBH-PW-N CUSTOMER P/N VERSION NO. CHANGE DESCRIPTION DATE 0 ORIGINAL VERSION 05.05.2008

More information

The MC9S12 Timer Output Compare Function Making an event happen at specific time on the HC12 The MC9S12 Output Compare Function

The MC9S12 Timer Output Compare Function Making an event happen at specific time on the HC12 The MC9S12 Output Compare Function The MC9S12 Timer Output Compare Function Making an event happen at specific time on the HC12 The MC9S12 Output Compare Function o Registers used to enable the output compare function o Using the MC9S12

More information

SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY

SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY SPECIFICATIONS FOR LIQUID CRYSTAL DISPLAY PART NUMBER: MGD1602A-FL-YBW DATE: MAY 26,2005 1.0 MECHANICAL SPECS MGD1602A SERIES LCD MODULE 1. Overall Module Size 80.0mm(W) x 36.0mm(H) x max 14.0mm(D) for

More information

34COM/60SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD

34COM/60SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD 34COM/6SEG DRIVER & CONTROLLER FOR DOT MATRIX LCD INTRODUCTION is a dot matrix LCD driver & controller LSI which is fabricated by low power CMOS technology It can display, 2 or 4 lines with 5 8 or 6 8

More information

Capturing the Time of an External Event Input Capture Subsystem

Capturing the Time of an External Event Input Capture Subsystem Capturing the Time of an External Event Input Capture Subsystem One way to determine the time of an external event is to wait for the event to occur, the read the TCNT register: For example, to determine

More information

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax:

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax: NHD-0220WH-MTGH-JT#E Character Liquid Crystal Display Module NHD- Newhaven Display 0220-2 Lines x 20 Characters WH- Display Type: Character M- Model T- White LED Backlight G- STN- Gray H- Transflective,

More information

Revision No. Date Description Item Page

Revision No. Date Description Item Page Midas Components Limited Electra House 32 Southtown Road Great Yarmouth Norfolk NR31 DU England Telephone +44 ()1493 6262 Fax +44 ()1493 665111 Email sales@midasdisplays.com Website www.midasdisplays.com

More information

LCD Module User Manual

LCD Module User Manual LCD Module User Manual Customer : MASS PRODUCTION CODE DRAWING NO : TC1602J-01WB0 : M-TC1602J-01WB0_A00 Approved By Customer: Date: Approved By Checked By Prepared By Vatronix Holdings Limited ADD 4/F,No404

More information

LCD MODULE DEM TGH

LCD MODULE DEM TGH DISPLAY Elektronik GmbH LCD MODULE DEM 16102 TGH Version : 1.1.0 26.09.2008 GENERAL SPECIFICATION MODULE NO. : DEM 16102 TGH VERSION NO. CHANGE DESCRIPTION DATE 0 ORIGINAL VERSION 12.03.2007 1.1.0 CHANGE

More information

SC162A VER2.1 CONTENT. 1. General description

SC162A VER2.1 CONTENT. 1. General description CONTNT 1. General description --------------------------------------------------------------------------3 2. Maximum absolute limit---------------------------------------------------------------------3

More information

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax:

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax: NHD-0108HZ-FSW-GBW Character Liquid Crystal Display Module NHD- Newhaven Display 0108-1 Line x 8 Characters HZ- Model F- Transflective SW- Side White LED Backlight G- STN- Gray B- 6:00 Optimal View W-

More information

NT7651. LCD controller/driver 16Cx2 characters icons PRELIMINARY. Features. General Description

NT7651. LCD controller/driver 16Cx2 characters icons PRELIMINARY. Features. General Description PRELIMINARY LCD controller/driver 16Cx2 characters + 16 icons Features! Single-chip LCD controller/driver! 2-line display of up to 16 characters + 16 icons, 1-line display of up to 32 characters + 16 icons,

More information

LCM SPECIFICATIONS. LCM MODE: CHARACTER PRODUCTION CODE: LCM2002A REVISION: ver1.1 DATE: 2004/9/6. (using) LCM 2002A Sep 6th, 2004

LCM SPECIFICATIONS. LCM MODE: CHARACTER PRODUCTION CODE: LCM2002A REVISION: ver1.1 DATE: 2004/9/6. (using) LCM 2002A Sep 6th, 2004 LCM SPECIFICATIONS (using) LCM MODE: CHARACTER PRODUCTION CODE: LCM2002A REVISION: ver1.1 DATE: 2004/9/6 010-62168698 62168699 www.qingyun-it.com P.1 of 14 PHYSICAL DATA Item Contents Unit LCD type STN

More information

MICROCONTROLLER SYSTEM CONTROL DESIGN JON PRITCHARD SCOTT VON THUN

MICROCONTROLLER SYSTEM CONTROL DESIGN JON PRITCHARD SCOTT VON THUN MICROCONTROLLER SYSTEM CONTROL DESIGN JON PRITCHARD SCOTT VON THUN Problem Statement Create a simple feedback environment that can be used to demonstrate various feedback control systems using a microcontroller

More information

LCD MODULE DEM FGH-LR

LCD MODULE DEM FGH-LR DISPLAY Elektronik GmbH LCD MODULE DEM 16217 FGH-LR Version : 3 15/Aug/2010 GENERAL SPECIFICATION MODULE NO: DEM 16217 FGH-LR CUSTOMER P/N Version No. Change Description Date 0 Original Version 26.07.2010

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

Sitronix. ST7038i FEATURES GENERAL DESCRIPTION. Dot Matrix LCD Controller/Driver

Sitronix. ST7038i FEATURES GENERAL DESCRIPTION. Dot Matrix LCD Controller/Driver ST Sitronix FEATURES 5 x 8 dot matrix possible Support low voltage single power operation: VDD, VDD2: 1.8 to 3.3V (typical) LCD Voltage Operation Range (V0/Vout) Programmable V0: 3 to 7V(V0) External power

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

LCD MODULE DEP Y

LCD MODULE DEP Y Display Elektronik GmbH LCD MODULE DEP 16216Y Product Specification Ver.: 5 15.11.2011 Contents 1. Module Basic Specification... 2. Mechanical Drawing... 3. Pin Definition... 4. Absolute Maximum Ratings...

More information

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax:

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax: NHD0216SZWBY5 OLED Display Module NHD Newhaven Display 0216 2 Lines x 16 Characters SZW OLED B Model Y Emitting Color: Yellow 5 +5V Power Supply Newhaven Display International, Inc 2661 Galvin Ct Elgin

More information

M0120SD 201MDB1 1. Vacuum Fluorescent Display Module

M0120SD 201MDB1 1. Vacuum Fluorescent Display Module M0120SD 201MDB1 1 Vacuum Fluorescent Display Module RoHS Compliant Newhaven Display International, Inc. 2511 Technology Drive, Suite 101 Elgin IL, 60124 Ph: 847 844 8795 Fax: 847 844 8796 www.newhavendisplay.com

More information

LCD MODULE DEM SYH

LCD MODULE DEM SYH DISPLAY Elektronik GmbH LCD MODULE DEM 16101 SYH Version: 5.1.1 23.09.2008 GENERAL SPECIFICATION MODULE NO. : DEM 16101 SYH VERSION NO. CHANGE DESCRIPTION DATE 0 ORIGINAL VERSION 06.03.2000 1 ADDING DDRAM

More information

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax:

Newhaven Display International, Inc Galvin Ct. Elgin IL, Ph: Fax: NHD0420DZWAB5 Character OLED Display Module NHD Newhaven Display 0420 4 lines x 20 characters DZW OLED A Model B Emitting Color: Blue 5 +5V power supply Newhaven Display International, Inc 2661 Galvin

More information

DISPLAY DEVICES 20T202DA1J (Tentative) Page - 1 / 18 VACUUM FLUORESCENT DISPLAY MODULE

DISPLAY DEVICES 20T202DA1J (Tentative) Page - 1 / 18 VACUUM FLUORESCENT DISPLAY MODULE DISPLAY DEVICES 2T22DAJ (Tentative) Page - / 8 VACUUM FLUORESCENT DISPLAY MODULE . SCOPE DISPLAY DEVICES 2T22DAJ (Tentative) Page - 2 / 8 This specification applies to VFD module (Model No: 2T22DAJ) manufactured

More information

Newhaven Display International, Inc Technology Drive, Suite 101 Elgin IL, Ph: Fax:

Newhaven Display International, Inc Technology Drive, Suite 101 Elgin IL, Ph: Fax: M0224SD242MDBR11 VacuumFluorescentDisplayModule RoHSCompliant NewhavenDisplayInternational,Inc. 2511TechnologyDrive,Suite101 ElginIL,60124 Ph:8478448795 Fax:8478448796 www.newhavendisplay.com nhtech@newhavendisplay.com

More information

CONTENT. 1. General description

CONTENT. 1. General description CONTNT 1. General description --------------------------------------------------------------------------3 2. Maximum absolute limit---------------------------------------------------------------------3

More information

INTEGRATED CIRCUITS DATA SHEET. PCF2119x-2 LCD controllers/drivers. Product specification File under Integrated Circuits, IC12

INTEGRATED CIRCUITS DATA SHEET. PCF2119x-2 LCD controllers/drivers. Product specification File under Integrated Circuits, IC12 INTEGRATED CIRCUITS DATA SHEET File under Integrated Circuits, IC12 28. August 2000 CONTENTS 1 FEATURES 1.1 Note 2 APPLICATIONS 3 GENERAL DESCRIPTION 4 ORDERING INFORMATION 5 BLOCK DIAGRAM 6 PAD INFORMATION

More information

M0121LB 222LHAR2 I1. Vacuum Fluorescent Display Module

M0121LB 222LHAR2 I1. Vacuum Fluorescent Display Module M0121LB 222LHAR2 I1 Vacuum Fluorescent Display Module RoHS Compliant Newhaven Display International, Inc. 2511 Technology Drive, Suite 101 Elgin IL, 60124 Ph: 847 844 8795 Fax: 847 844 8796 www.newhavendisplay.com

More information

FEATURES DESCRIPTION APPLICATIONS BLOCK DIAGRAM. PT6314 Dot Character VFD Controller/Driver IC

FEATURES DESCRIPTION APPLICATIONS BLOCK DIAGRAM. PT6314 Dot Character VFD Controller/Driver IC Dot Character VFD Controller/Driver IC DESCRIPTION PT6314 is a VFD Controller/Driver IC utilizing CMOS technology providing 80 segment outputs and 24 grid outputs. It supports dot matrix displays of up

More information

NHD 0216KZW AB5. OLED Display Module

NHD 0216KZW AB5. OLED Display Module NHD0216KZWAB5 OLED Display Module NHD Newhaven Display 0216 2 lines x 16 characters KZW OLED A Model B Emitting Color: Blue 5 +5V power supply Newhaven Display International, Inc 2511 Technology Drive,

More information

Using Input Capture on the 9S12

Using Input Capture on the 9S12 The 9S12 Input Capture Function Huang Sections 8.1-8.5 ECT_16B8C Block User Guide o Interrupts on the 9S12 o Capturing the time of an external event o The 9S12 Input Capture Function o Registers used to

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

INTEGRATED CIRCUITS DATA SHEET. PCF2119X LCD controllers/drivers. Product specification Supersedes data of 2002 Jan 16.

INTEGRATED CIRCUITS DATA SHEET. PCF2119X LCD controllers/drivers. Product specification Supersedes data of 2002 Jan 16. INTEGRATED CIRCUITS DATA SHEET Supersedes data of 2002 Jan 16 2003 Jan 30 CONTENTS 1 FEATURES 1.1 Note 2 APPLICATIONS 3 GENERAL DESCRIPTION 4 ORDERING INFORMATION 5 BLOCK DIAGRAM 6 PAD INFORMATION 6.1

More information

Dragon12 LCD Displays Hantronix_CLD.PDF data sheet (Dragon12 CD-ROM) Dragon12 LCD Display. The Dragon12 board has a 16 character x 2 line display

Dragon12 LCD Displays Hantronix_CLD.PDF data sheet (Dragon12 CD-ROM) Dragon12 LCD Display. The Dragon12 board has a 16 character x 2 line display Dragon12 LCD Displays Hantronix_CLD.PDF data sheet (Dragon12 CD-ROM) o Using the Dragon12 LCD display Dragon12 LCD Display The Dragon12 board has a 16 character x 2 line display Each character is a 5x7

More information

Specification of Vacuum Fluorescent Display NORITAKE ITRON CORPORATION Sheet 1/19 DS25404

Specification of Vacuum Fluorescent Display NORITAKE ITRON CORPORATION Sheet 1/19 DS25404 Specification of Vacuum Fluorescent Display NORITAKE ITRON CORPORATION Sheet 1/19 DS2544 Rev. Spec. No. Date(M-D-Y) Item No. P-R Aug-1-7 DS1625M 1 P-R1 Dec-1-7 2 P-R2 Dec-19-7 3 T-R Dec-26-7 4 T-R1 Jan-7-8

More information

ALL SHORE INDUSTRIES, INC.

ALL SHORE INDUSTRIES, INC. ALL SHORE INDUSTRIES, INC. SPECIFICATION FOR LIQUID CRYSTAL DISPLAY MODULE MODEL #: ASI-_-22DS-KJ-_YD/X Item Dimension Unit Number of Characters 2 characters x 2Lines - Module dimension 18. x 4. x 13.9(MAX)

More information

COG (Chip-on-Glass) Liquid Crystal Display Module

COG (Chip-on-Glass) Liquid Crystal Display Module NHD-C0220AZ-FSW-FTW COG (Chip-on-Glass) Liquid Crystal Display Module NHD- Newhaven Display C0220- COG, 2 Lines x 20 Characters AZ- Model F- Transflective SW- Side White LED Backlight F- FSTN Positive

More information

VACUUM FLUORESCENT DISPLAY MODULE SPECIFICATION SPECIFICATION NO. : DS DATE OF ISSUE : Apr., 5, R E V I S I O N : May, 18, 2007

VACUUM FLUORESCENT DISPLAY MODULE SPECIFICATION SPECIFICATION NO. : DS DATE OF ISSUE : Apr., 5, R E V I S I O N : May, 18, 2007 RoHS 2002/95/EC VACUUM FLUORESCENT DISPLAY MODULE SPECIFICATION MODEL: CU40045-UW1J REVISION: F-1 SPECIFICATION NO. : DS-1439-0000-01 DATE OF ISSUE : Apr., 5, 2007 R E V I S I O N : May, 18, 2007 R E V

More information

EE4390 Microprocessors

EE4390 Microprocessors EE4390 Microprocessors Lessons 23, 24 - Exceptions - Resets and Interrupts Revised: Aug 1, 2003 1 - Exceptions - Resets and Interrupts Polling vs. Interrupts Exceptions: Resets and Interrupts 68HC12 Exceptions

More information

8. SED1565 Series. (Rev. 1.2)

8. SED1565 Series. (Rev. 1.2) 8. (Rev. 1.2) Contents GENERAL DESCRIPTION...8-1 FEATURES...8-1 BLOCK DIAGRAM...8-3 PIN DIMENSIONS...8-4 PIN DESCRIPTIONS...8-2 DESCRIPTION OF FUNCTIONS...8-24 COMMANDS...8-48 COMMAND DESCRIPTION...8-57

More information

ECE3120: Computer Systems Chapter 8: Timer Module

ECE3120: Computer Systems Chapter 8: Timer Module ECE32: Computer Systems Chapter 8: Timer Module Manjeera Jeedigunta http://blogs.cae.tntech.edu/msjeedigun2 Email: msjeedigun2@tntech.edu Tel: 93-372-68, Prescott Hall 2 Why are Timer Functions Important?

More information

FPGA Interfacing of HD44780 Based LCD Using Delayed Finite State Machine (FSM)

FPGA Interfacing of HD44780 Based LCD Using Delayed Finite State Machine (FSM) FPGA Interfacing of HD44780 Based LCD Using Delayed Finite State Machine (FSM) Edwin NC Mui Custom R & D Engineer Texco Enterprise Ptd. Ltd. {blackgrail2000@hotmail.com} Abstract This paper presents a

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

SSD1800. Advance Information. 80x Icon line LCD Segment / Common Driver with Controller for Character Display System

SSD1800. Advance Information. 80x Icon line LCD Segment / Common Driver with Controller for Character Display System SOLOMON SYSTECH SEMICONDUCTOR TECHNICAL DATA SSD1800 Advance Information 80x16 + 1 Icon line LCD Segment / Common Driver with Controller for Character Display System This document contains information

More information

Dragon12 LCD Displays Huang Sections 7.8 Hantronix_CLD.PDF data sheet (Dragon12 CD-ROM) ATD_10B8C Block User Guide. Dragon12 LCD Display

Dragon12 LCD Displays Huang Sections 7.8 Hantronix_CLD.PDF data sheet (Dragon12 CD-ROM) ATD_10B8C Block User Guide. Dragon12 LCD Display Dragon12 LCD Displays Huang Sections 7.8 Hantronix_CLD.PDF data sheet (Dragon12 CD-ROM) ATD_10B8C Block User Guide o Using the Dragon12 LCD display Dragon12 LCD Display The Dragon12 board has a 16 character

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

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

LCD Module Specification

LCD Module Specification LCD Module Specification Model: LC62-SMLYH6 Table of Contents COER & CONTENTS BASIC SPECIFICATIONS 2 ABSOLUTE MAXIMUM RATINGS 3 ELECTRICAL CHARACTERISTICS 4 OPERATING PRINCIPLES & METHODES 7 MPU INTERFACE

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

What happens when an HC12 gets in unmasked interrupt:

What happens when an HC12 gets in unmasked interrupt: What happens when an HC12 gets in unmasked interrupt: 1. Completes current instruction 2. Clears instruction queue 3. Calculates return address 4. Stacks return address and contents of CPU registers 5.

More information

NHD-C0216CZ-FSW-FBW-3V3

NHD-C0216CZ-FSW-FBW-3V3 NHD-C0216CZ-FSW-FBW-3V3 COG (Chip-on-Glass) Liquid Crystal Display Module NHD- Newhaven Display C0216- COG, 2 Lines x 16 Characters CZ- Model F- Transflective SW- Side White LED Backlight F- FSTN (+) B-

More information

Application Note. Connecting standard LCD modules to. the MB90670/5 series. History 01 th Feb. 97 MM V1.0 started 28 th June 00 TKa V1.

Application Note. Connecting standard LCD modules to. the MB90670/5 series. History 01 th Feb. 97 MM V1.0 started 28 th June 00 TKa V1. Application Note Connecting standard LCD modules to the MB90670/5 series Fujitsu Microelectronics Europe GmbH, Microcontroller Application Group History 01 th Feb. 97 MM V1.0 started 28 th June 00 TKa

More information

6.1. EE 109 Unit 6. LCD Interfacing

6.1. EE 109 Unit 6. LCD Interfacing 6.1 EE 109 Unit 6 LCD Interfacing LCD BOARD 6.2 6.3 The EE 109 LCD Shield The LCD shield is a 16 character by 2 row LCD that mounts on top of the Arduino Uno. The shield also contains five buttons that

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

HD (132 x 168-dot Graphics LCD Controller/Driver with Bit-operation Functions) Preliminary. Rev 0.1 Oct 15, Description.

HD (132 x 168-dot Graphics LCD Controller/Driver with Bit-operation Functions) Preliminary. Rev 0.1 Oct 15, Description. Preliminary HD66753 (132 x 168-dot Graphics LCD Controller/Driver with Bit-operation Functions) Rev 0.1 Oct 15, 2001 Description The HD66753, dot-matrix graphics LCD controller and driver LSI, displays

More information

LCM SPECIFICATIONS. Vatronix Holdings Limited. Approved By Checked By Prepared By. Approved By Customer: Date: Customer : DRAWING NO.

LCM SPECIFICATIONS. Vatronix Holdings Limited. Approved By Checked By Prepared By. Approved By Customer: Date: Customer : DRAWING NO. LCM SPECIFICATIONS Customer : MASS PRODUCTION CODE : TG12864B-04WA0_A00 DRAWING NO. : Approved By Customer: Date: Approved By Checked By Prepared By Vatronix Holdings Limited ADD 5F,No.10 BLG,WenGuang

More information