Free Essay

Liquid Crystal Display

In:

Submitted By harshinder
Words 2211
Pages 9
Introduction to graphics and LCD technologies
NXP Product Line Microcontrollers Business Line Standard ICs

Agenda
Passive and active LCD technologies
– How LCDs work, STN and TFT differences – How data is converted to colors on the LCD

LCD signal interface and timing parameters
– LCD signals and timing – Controlling the backlight

Introduction to frame buffers with the LPC32x0 MCU
– How graphics data is stored in memory – Color depth and lookup tables

System considerations for LCD based systems
– Mapping LCD data signals to the LCD controller signals – LCD data bandwidth

Examples

Passive and active LCD technologies

How an LCD works
An array of Liquid Crystal segments
– When not in an electrical field, crystals are organized in a random pattern – When an electric field is applied, the crystals align to the field – The crystals themselves do not emit light, but ‘gate’ the amount of light that can pass through them
• Crystals aligned perpendicular to a light source will prevent light from passing through them

Each LCD segment is aligned with an electric field A light source (backlight) is needed to drive light through the aligned crystal field
Courtesy of Sharp

Passive displays
Passive LCD panels
– Consists of a grid of row and columns electrical signals – Columns and rows connect perpendicularly to every segment in the LCD
• Columns and rows are multiplexed to many different segments

– An IC controls which column and row are selected to enable or disable the segment at the row/column intersection – A small bias is applied to the row and column to generate a field at the intersection
• • No charge is stored at the segment It may take multiple passes to correctly align the field to the desired value

STN LCDs are passive displays

Active displays
Active LCD panels
– Consists of a grid of row and columns electrical signals – Columns and rows connect perpendicularly to a active device (transistor) for every segment in the LCD
• Columns and rows are multiplexed to many different segments

– An IC controls which column and row are selected to enable or disable the segment at the row/column intersection – The selected row and column enable the transistor
• • Charge is stored at the transistor One pass will set the aligned state of the transistor (although it may still take a little time for all the crystals to align)

– A stronger backlight is needed than a passive display

TFT displays are active displays

LCD panel Technologies – making colors
Each LCD segment only gates reflected or generated light
– Color filters allow generation of specific colors (RGB) at a segment – To generate a real world color, 3 segments are needed – these 3 segments individually pass light through a red, green, and blue filter to make a group of segments, or a RGB pixel – For a 320x240 RGB LCD display, there are actually 320*3=960 segments (columns) and 240 rows

Generating color on an TFT display
TFT displays can drive 3 segments (1 pixel) per clock with variable electric field strength
– Supports many colors – Always 1 pixel per clock (3 segments of Red, green, and blue) – Color levels depend on the number of data lines on the LCD panel and number of LCD controller data output signals
• • • May be 24 lines - 24bits per pixel (bpp) 18bpp, 16bpp, 15bpp, 8bpp 320 clocks require to place 320 pixels

– Parallel data interface

Generating color on an STN display
STN displays drive 1 or more segments per clock (full field strength on or off)
– Can drive fractional pixels per clock – Serial interface
• • 120 clocks required to drive 320 pixels @ 2-2/3 pixels per clock (8 bit data bus) 240 clocks required to drive 320 pixels @ 1-1/2 pixel per clock (4 bit data bus)

Segments are alternated between on and off states to generate color depth
– May take multiple refresh cycles to get the LCD color to a desired value (slow to respond due to a maximum of 1 digital state change per refresh cycle) – For example, a 50% duty cycle on a segment will give about 50% brightness

LCD signal interface and timing parameters

LCD signals and timing
LCDs require the following basic timing signals:
– VSYNC (Vertical Sync for TFT) or FP (Frame Pulse for STN)
• • • • Used to reset the LCD row pointer to top of the display Used to reset the LCD column pointer to the edge of the display Data line function varies in STN and TFT modes and panel type Used to panel control refresh rate

– HSYNC (Horizontal sync for TFT) or LP (Line Pulse for STN) – D0..dXX (1 or more data lines) – LCDCLK (LCD clock)

Some panels may require additional timing signals:
– STN panels usually require MDISP (AC bias)
• • Used for AC bias (to prevent panel damage) Used to indicate valid data on the LCD data bus

– LCDDATAENAB

Other signals – some optional
– LCD power, backlight power, touchscreen

LCD bus timing parameters

Frame and line timing parameters
1 frame (1 refresh cycle)

VSYNC

Vertical back porch (VBP)

LCD Rows

Vertical front porch (VFP)

Total LCD lines = VSYNC + VBP + rows + VFP

1 row (expanded) HSYNC Horizontal back porch (HBP) LCD Columns Horizontal front porch (HFP) Total clocks per line = HSYNC + HBP + Columns + HFP

1

2

3

4

5

6

x

x

x

x

x

L LCD clock LCD data enable LCD data

Total clocks per frame = Total LCD lines * Total clocks per line

LQ043 timing (TFT) parameters example

LCD software timing data structure
/* Sharp LQ043 display parameters */ const LCD_PARAM_T sharp_lq043 = { 2, 2, 41, 480, 2, 2, 10, 272, 0, 0, 0, 0, 0, 18, TFT }; /* LCD parameters can be abstracted to a common software structure that can easily configure a driver for the LCD panel! */ /* Horizontal back porch */ /* Horizontal front porch */ /* HSYNC pulse width */ /* Pixels per line */ /* Vertical back porch */ /* Vertical front porch */ /* VSYNC pulse width */ /* Lines per panel */ /* Do not invert output enable */ /* Do not invert panel clock */ /* Do not invert HSYNC */ /* Do not invert VSYNC */ /* AC bias frequency (not used) */ /* Bits per pixel */ /* LCD panel type */

9000000, /* Optimal clock rate (Hz) */

LQ043 timing parameters example
Based on the previous parameters from the LQ043 datasheet
– Vertical timings
• VFP = 2 lines, VBP = 2 lines • VSYNC width = 10 lines • Vertical period = 272 lines (vertical resolution = 272 pixels)

– Horizontal timings
• HFP = 2 clocks, HBP = 2 clocks • HSYNC width = 41 clocks • Horizontal period = 480 clocks (horizontal resolution = 480 pixels)

– Clock speed = 7.83MHz to 9.26MHz

From this data,
– – – – – A single line takes (2 + 2 + 41 + 480) clocks = 525 clocks/line A full frame takes (2 + 2 + 10 + 272) lines = 286 lines/frame A full frame in clocks = 286 * 525 = 150150 clocks/frame At 7.83MHz, the LCD would refresh at 7.83M/150.15K = 52.1Hz At 9.26MHz, the LCD would refresh at 9. 26M/150.15K = 61.7Hz

LCD backlights
LCD backlights are not controlled through the LCD controller
– Different backlight technology based on panel size
• Large panels may use fluorescent lights • Smaller panels may use LEDs
– Usually controlled by a constant current source – Digital signal for on/off control – PWMs for variable intensity

– LCD diffuser keeps backlight brightness fairly uniform

Most of an LCD’s power usage is from the backlight
– Small QVGA LED based panels may use 300mW or more

Introduction to frame buffers with the LPC32x0 MCU

Frame buffers
What is a frame buffer?
– Memory allocated for data used to periodically refresh the display
• Memory allocated to the frame buffer is usually shared with other system devices (CPU core, DMA, network, etc.) • Organized as an array of bits, bytes, half-words, or words, depending on the selected color depth and color bit organization
– Pixel data may be packed bits (8 pixels/byte), bytes (up to 256 colors), 16-bit halfwords (up to 64KColors), or 24-bit words (up to 16 million Colors)

– Buffer size is computed using (columns * rows * sizeof(pixel data))
• Example : An 800x600 display @16bpp (half-word RGB565) = 800 columns*600 rows*2 bytes/pixel = 960000 bytes • 24-bit data is stored in a 32-bit field (tossing the high byte for each pixel)

Color patterns
Digital systems usually stored data in RGB (red-green-blue) colorspace format
– Red, green, and blue components are bitfields of a pixel’s color value
• Usually referred to as bits per pixel (bpp)

– RGB332 – RGB555 – RGB565 – RGB888

8 bbp (Red 3, Green 3, Blue 2) 16 bpp (Red 5, Green 5, Blue 5) 16 bpp (Red 5, Green 6, Blue 5) 24 bpp (Red 8, Green 8, Blue 8)

• Organized as a byte in memory as (RRR GGG BB) • Organized as a half-word in memory (U RRRRR GGGGG BBBBB) • Organized as a half-word in memory (RRRRR GGGGGG BBBBB) • Organized as a word (32-bit) in memory
– (UUUUUUUU RRRRRRRR GGGGGGGG BBBBBBBB) (U = unused)

Frame buffer data to LCD mapping example (16 bpp)

Color depth and lookup tables
The frame buffer color depth and LCD color depth do not need to be the same
– A lookup table can be used to map a small subset to values to LCD color values
• For example, controller can be configured for 4bpp while the LCD interface is 16bpp
– Allows a selection of 16 colors from a possible 64Kcolors – Colors can be dynamically changed by adjusting the lookup table – Allows a tradeoff for color depth and system bandwidth • 4bpp uses ¼ the bandwidth of 16bpp

• Color depths of 8bpp or less require the use of a lookup table
– 8bpp requires 256 lookup entries, 4bpp requires 16, etc. – Color index [0] uses 16-bit lookup table index [0] for the LCD • Colors can be mapped many different ways

Example lookup table for mapping 8-color RGB to RGB565
This example table assumes that red, green, and blue can only be turned off or turned to full intensity
– 3bpp colors = 8 colors 16-bit RGB565 output

Frame buffer value R0, G0, B0 (0) R0, G0, B1 (1) R0, G1, B0 (2) R0, G1, B1 (3) R1, G0, B0 (4) R1, G0, B1 (5) R1, G1, B0 (6) R1, G1, B1 (7)

Lookup table value (16-bit RGB565 output) 0x0000 0x001F 0x07E0 0x07FF 0xF800 0xF81F 0xFFE0 0xFFFF

System color black blue green cyan red magenta yellow white

System considerations for LCD based systems

Mapping LCD data signals to the LCD controller signals
LCD data signals don’t always map directly to LCD interface signals (applies to TFT panels)
– Example: The LCD controller only supports 16bpp and 24bpp output, but the LCD panel is 18bpp (256KColors)

LCD signals in the datasheet usually use the Redx, Bluex, and Greenx naming convention, while the LCD interfaces uses Dx..D0 Many options for connecting the LCD
– Can ground unused LCD signals (usually the lower weighted bits) for interfaces with less signals than the LCD – Can keep LCD interface signals unused for interfaces with more signals than the LCD – Can also use non-standard color mappings
• Such as RGB484

16-bit RGB565 interface to 18bpp LCD panel TFT example
LCD interface signals 16bpp D15 D14 D13 D12 D11 LCD panel signals 18bpp Red 5 Red 4 Red 3 Red 2 Red 1 Red 0

R5

G6

D10 D9 D8 D7 D6 D5

Green 5 Green 4 Green 3 Green 2 Green 1 Green 0

B5

D4 D3 D2 D1 D0 GND

Blue 5 Blue 4 Blue 3 Blue 2 Blue 1 Blue 0

24-bit RGB888 interface to 18bpp LCD panel TFT example
LCD interface signals 24bpp LCD panel signals 18bpp

R8

D23 D22 D21 D20 D19 D18 D17 D16 D15 D14 D13 D12 D11 D10 D9 D8 D7 D6 D5 D4 D3 D2 D1 D0

Red 5 Red 4 Red 3 Red 2 Red 1 Red 0

G8

Green 5 Green 4 Green 3 Green 2 Green 1 Green 0

B8

Blue 5 Blue 4 Blue 3 Blue 2 Blue 1 Blue 0

LCD data bandwidth
LCDs need to be refreshed periodically from the frame buffer to keep their image
– This refresh cycle usually occurs automatically in the background through DMA
• In a shared memory system such as the LPC32x0, LCD bandwidth consumes a portion of the available system memory bandwidth

– The refresh rate is derived from the pixel clock rate and panel parameters – Total memory bandwidth required to keep a panel refreshed in a product of the frame buffer size times the refresh rate – For a 640x480 pixel display using 16-bit color and being refreshed at 60Hz
• • • Bytes/sec for LCD = 60 * 640 * 480 * 2 bytes/pixel = 70.3125MBytes/sec Very large displays can slow down the CPU by delaying accesses to memory during refresh cycles Performance impact can be minimized with features such as large CPU caches, layered (multiple) bus architecture, or effective use of internal memory

– Bandwidth used to keep the LCD refreshed will not be available for system use

Examples

LQ043 TFT signal connections (24bpp)

LQ043 TFT PWM backlight power control Variable brightness

Drawing a box on the LCD screen
The following C code will draw a box on the display
– The display size is 320x240 pixels and is RGB565 format – The box will be drawn from (100,50) to (220, 190) – The box top is red, the bottom is blue, and the sides green void putpixel(int x, int y, unsigned short color) { unsigned short *fb = fblog; *(fb + (y * 240) + x) = color; } void drawbox(void) { int x, y; for (x = 40; x

Similar Documents

Free Essay

Liquid Crystal Display

...TERM PAPER Topic:LCD (LIQUED CRYSTAL DISPLAY) DOA: 22/02/2010 DOS: 06/05/2010 Submitted to: Submitted by: Bindu ABSTRACT LCD projectors are becoming smaller and less expensive, and are starting to incorporate built-in light sources and speakers. LCD panels are also improving in resolution and response. An LCD panel is fairly light and thin, but require a separate overhead projector. The LCD projector contains its own light source, so no overhead projector is required. These have more multimedia features than LCD panels, and usually include speakers and multiple inputs and outputs. Polysilicone LCDs are smaller, and allow more light to pass through than thin-film transistor LCDs. LCD projectors typically weigh between 10 to 50 pounds. Heavier ones are also available that can achieve movie screen quality, although these are more costly, and better suited to permanent installations. Most LCD panel devices have a screen of between 8.4 and 10.4 inches diagonally. A good panel or projector will also provide on-screen adjustment, remote control and a hard shell carrying case. ACKNOWLEDGEMENT I take this opportunity to present my votes of thanks to all those guidepost who really acted as lightening pillars to enlighten our way throughout this project that has led to successful and satisfactory completion of this study. Name-Rahul Rawat ...

Words: 3771 - Pages: 16

Free Essay

Liquid Crystal Display

...101: Mechanics Topic: -LIQUID CRUSTAL DISPLAY DOA: 28/08/2010 DOR: 28/09/2010 DOS: 10/11/2010 Submitted to: Submitted By: Ms. Neeti Walia Deptt. of Physics Roll. No. A13 Sec: E4001 Reg. No: 11007103 ACKNOWLEDGEMENT I take this opportunity to present my votes of thanks to all those guidepost who really acted as lightening pillars to enlighten our way throughout this project that has led to successful and satisfactory completion of This study. We are highly thankful to Miss NEETI WALIA for her active support, valuable time and advice, whole-hearted guidance, sincere cooperation and pains-taking involvement during the study and in completing the assignment of preparing the said project within the time stipulated. Lastly, We are thankful to all those, particularly the various friends , who have been instrumental in creating proper, healthy and conductive environment and including new and fresh innovative ideas for us during the project, their help, it would have been extremely difficult for us to prepare the project in a time bound framework. TABLE OF CONTENTS:-  INTRODUCTION  WHAT IS LCD  THEORY OF LCD  TYPES OF LCD  PASSIVE-MATRIX ADDRESSED LCD  ACTIVE-MATRIX ADDRESED LCD  ADVANTAGE N DISADVANTAGE  COLOUR DISPLAY  APPLICATIONS OF LCD  BIBLIOGRAPHY LIQUID CRYSTAL DISPLAY INTRODUCTION:- LCDs are super-thin displays that are used in laptop...

Words: 2251 - Pages: 10

Free Essay

Liquid Crystal Display

...Liquid Crystal Display The LCD is used for the purpose of displaying the words which we are given in the program code. This code will be executed on microcontroller chip. By following the instructions in code the LCD display the related words. Fig.5.6 shows the LCD display. 5.3.1 Introduction [pic] Fig. 5.6: LCD Display The LCD display consists of two lines, 20 characters per line that is interfaced with the PIC16F73.The protocol (handshaking) for the display is as shown in Fig. The display contains two internal byte-wide registers, one for commands (RS=0) and the second for characters to be displayed (RS=1). It also contains a user-programmed RAM area (the character RAM) that can be programmed to generate any desired character that can be formed using a dot matrix. To distinguish between these two data areas, the hex command byte 80 will be used to signify that the display RAM address 00h will be chosen Port1 is used to furnish the command or data type, and ports 3.2 to 3.4 furnish register select and read/write levels. Theory A liquid crystal is a material (normally organic for LCDs) that will flow like a liquid but whose molecular structure has some properties normally associated with solids. The Liquid Crystal Display (LCD) is a low power device. The power requirement is typically in the order of microwatts for the LCD. However, an LCD requires an external or internal light source. It is limited to a temperature range of about 0°C to 60°C and lifetime...

Words: 1355 - Pages: 6

Free Essay

Liquid Crystal Display

...Liquid Crystal Display PHY 101: Mechanics Topic: -LIQUID CRUSTAL DISPLAY DOA: 28/08/2010 DOR: 28/09/2010 DOS: 10/11/2010 Submitted to: Submitted By: Ms. Neeti Walia Deptt. of Physics Roll. No. A13 Sec: E4001 Reg. No: 11007103 ACKNOWLEDGEMENT I take this opportunity to present my votes of thanks to all those guidepost who really acted as lightening pillars to enlighten our way throughout this project that has led to successful and satisfactory completion of This study. We are highly thankful to Miss NEETI WALIA for her active support, valuable time and advice, whole-hearted guidance, sincere cooperation and pains-taking involvement during the study and in completing the assignment of preparing the said project within the time stipulated. Lastly, We are thankful to all those, particularly the various friends , who have been instrumental in creating proper, healthy and conductive environment and including new and fresh innovative ideas for us during the project, their help, it would have been extremely difficult for us to prepare the project in a time bound framework. TABLE OF CONTENTS:-  INTRODUCTION  WHAT IS LCD  THEORY OF LCD  TYPES OF LCD  PASSIVE-MATRIX ADDRESSED LCD  ACTIVE-MATRIX ADDRESED LCD  ADVANTAGE N DISADVANTAGE  COLOUR DISPLAY  APPLICATIONS OF LCD  BIBLIOGRAPHY LIQUID CRYSTAL DISPLAY INTRODUCTION:- LCDs are super-thin displays that are...

Words: 295 - Pages: 2

Free Essay

Types of Displays

...DIFFERENT TYPES OF DISPLAYS 1. Cathode Ray Tubes (CRT) Technology This technology has been in use for more than 100 years, and is found in most televisions and computer monitors. Beams of electrons, from an electron gun are projected towards the fluorescent screen, within a vacuum, and each time it hits the screen, a phosphor dot lights up inside the glass tube, and thus illuminating active protons of the screen. Repetitions through the screen form a complete image. The image colour depends on the intensity of the three beams of RED, BLUE and Green. The screen is usually made of thick glass to prevent the emitting of x-rays to the environment. The tube has high stress due to the presence of the vacuum which can cause an explosion if the outer glass was to break. These types of screens are very hard to recycle because they have high concentration of lead and phosphors 2. Liquid Crystal Display (LCD) Technology This technology uses the light modulating properties of liquid crystals. This display uses two sheets of polarizing material with a liquid crystal solution between them (thus the name liquid crystal display). An electric current passed through the liquid causes the crystals to align so that light cannot pass through them, acting like a filter. The screen is then put in front of a light source in order to produce images. When light falls on a pixel on the screen, the pixel appears black but change in the amount of voltage flowing in each pixels results in varying amount...

Words: 635 - Pages: 3

Free Essay

Lcd Display

...[pic] TOPIC:- LIQUID CRYSTAL DISPLAY [pic] SUBMITTED TO:- SUBMITTED BY:- Swetha chadha D.kranthi ram SEC. :-M3R16 ROLL NO. REG NO. :- 11013455 LIQUID CRYSTAL DISPLAY TABLE OF CONTENTS |SNO |TOPIC |PAGE | | | |NO | |1 |what is lcd | 8 | |2 |Technology behind lcd |9 | | |monitor | | |3 |Working of lcd monitor |10 | |4 |Features of lcd television |11 | |5 |Diff between lcd and plasma|12 | |6 |Texas instrument’s test |14 | |7 |High transmissive tft lcd |16 ...

Words: 6534 - Pages: 27

Free Essay

Lcd Principles and Applications

... |Liquid crystals |8 | |5 |Working Principle and operation |9 | |6 |Types of LCDs |12 | |7 |Advantages of LCDs |13 | |8 |Disadvantages of LCDs |14 | |9 |Applications of LCDs |16 | |10 |Discussions |19 | |11 |Conclusions |20 | |12 |References |21 | Abstract: Today we see items containing an LCD (liquid crystal display) everywhere. They are all around us -- in laptop computers, digital clocks and watches, microwave ovens, CD players and many other electronic devices. From the wrist watch and pocket calculator to an advanced VGA computer screen, the liquid crystal display has evolved into an important and versatile interface. A liquid crystal display consists of an array of tiny segments (called pixels) that can be manipulated to present information. This basic idea is common to all displays,...

Words: 3870 - Pages: 16

Free Essay

Unit 3 Assignment 1

...SCSI narrow and wide SCSI, the narrow SCSI has 50 pins and the wide has 68 pins. Video 1.09 teaches that there are two types of monitors, you have CRT and LCD. CRT stands for cathode ray tube and LCD stands for liquid crystal display. The CRT is similar to an old television and the LCD uses thin film transistors and the back lighting is through polarized panels. Your specifications of a monitor include screen size, contrast ratio, refresh rate, response time, interfacing, dot pitchand pixel pitch. Video 1.11 focuses on types of printers and the types of problems that come with each. There is the Dot Matrix, Ink Jet and the laser printers. Overall the videos covered your computer basics and the parts that make it productive. I could comprehend the objective of the videos but they all covered a plethora of information in a matter of minutes, so I feel there was a lot that I missed. Fortunately what I did not catch in the video chapter three in my textbook fills in. Topics in the videos: * Ports and Connectors * Types of Monitors * Types of Printers Terms used in the videos: * USB- universal serial bus * IRQ- interrupt request * SCSI- small computer systems interface NIC- network interface card * CRT- cathode ray tube * LCD- liquid crystal...

Words: 322 - Pages: 2

Free Essay

Nt1110 Video Summary 2

...listens for the address as well as the communication between CPU and the hardware. The memory address, where each hardware device is assigned its own memory addresses and the CPU stores instructions in the memory. Also, we’ve learned of Direct Memory Access where it allows direct communication channel between the device and the system memory that does not require the CPU and makes for faster communication speeds and use of the device manager, used to troubleshoot hardware and resolve resource conflicts in the system. We have also learned of the two main types of monitors on the market today, the Cathode Ray Tube monitor and the Liquid Crystal Display monitor. Liquid Crystal monitors use thin film transistors, also known as an active matrix to display images on the screen, whereas Cathode Ray monitors use tube as high electrical charges to display the images. LCD’s are designed to support a fixed resolution, called a native resolution they often come in flavors such as XGA – 1024 x 768, SXGA - 1280 x 1024, UXGA – 1600 x 1200 and WUXGA – 1920 x 1200. We’ve also learned of the contrast ratio, which is the ratio of purest white to purest black the monitor can produce, where the larger the ratio the...

Words: 301 - Pages: 2

Free Essay

Term Paper

...screens involve a number of processes, including the front of the tube being scanned downward in a pattern of lines, electron beams “sweeping” an image across the screen by modulating their intensity, a coil generating magnetic field and more. The Health Dangers of CRTs • Small amounts of radiation (x-ray frequencies and others) are emitted as the electrons sweep the screen. • At close range, this radiation (literally pulsating fields of energy) puts biological stress on humans, animals and plants. • CRTs also operate at an extremely high voltage, which continues on long after the computer has been turned off. LCD ( Liquid Crystal Display) Screens Radiation - these screens are flatter, often appearing as panels. LCD screens are safer than CRTs. • Display is composed of color or monochrome pixels that are filled with liquid crystals. • Liquid crystals are lit by a backlight or reflector. • LCD screens utilize...

Words: 750 - Pages: 3

Free Essay

Ports and Connectors

...Video 1.07 Ports and Connectors In this chapter, I learned about serial, parallel, SCSI, USB, sound, and FireWire ports and some of their corresponding devices. I also learned that USB has become the dominate port replacing the PS/2 mouse and keyboard, serial and parallel ports on recent systems. Below are some of the topics presented. Serial, Parallel, Game Ports * Serial ports are male with 9 or 25-pins * Parallel ports are female and have 25-pins * Game ports are also female and have 15pins with two rows Older mice used serial connectors and older keyboards used 5-pin DIN connectors. The more modern connectors is the PS/2 pin or the USB or wireless. Network Interface Card * Is responsible for converting parallel communications to serial * It uses the RJ-45 connector Modem * This is the slowest connection to the Internet which uses the phone line * Transfers 56 Kbps * V.92 is a faster technology but still slower that NIC * They convert analog into digital and then converts from digital into analog * Uses RJ-11 connectors Video * VGA- analog interface D-type, 15-pins, 3 rows * DVI- Digital Visual Interface * S-Video round with 4 or 7 pins, used to connect to the TV USB * Universal Serial Bus that is hot swappable * USB1 transmits at 12 Mbps 3 meters in length * USB2 transmits at 480 Mbps 5 meters in length USB come with two sizes of connectors A and B. The A connector is the...

Words: 748 - Pages: 3

Free Essay

Electronics and Communicatio

...Vehicle Accident Prevention Using eye Blink Sensor Abstract: Now a day’s accidents are increasing at a large pace, and various technologies are being introduced to reduce the accidents. In this project we provide means of accident prevention using eye blink wherein the vehicle is stopped immediately and intimated wherever needed. In this project we have two sections. One is transmitter section which is located in the vehicle and another one is Receiver section located in remote place (Police station, near ones, etc). In the transmitter section the eye blink sensor is placed near the eye to sense the blink count and this information is transmitted in the form of pulses and is given to the Microcontroller. The Microcontroller uses this information to compare with the normal eye blink programmed in the chip and if any abnormal situation arises the vehicle is stopped with an alarm indication, this operation is enabled by means of the driver circuit connected to the vehicle motor and the signal is transmitted via RF-transmitter at the frequency of 433.92 MHz. In the Receiver side the transmitted signal is received and the signal is decoded and given to the Microcontroller, which uses this information for displaying the alert message in the LCD as programmed, simultaneously a buzzer alert is given. Block Diagram Transmitter[pic] Receiver [pic] HARDWARE REQUIREMENTS • Microcontroller Unit and Power Supply • LCD...

Words: 1216 - Pages: 5

Free Essay

Graphene

...grapheme holds many superlative qualities allowing for it to be integrated into a huge number of applications. At the start, grapheme will be used to help improve the performance and efficiency of current materials and substances, but soon after it will be developed in conjunction with other two-dimensional crystals to create more amazing compounds to suit a wider range of applications. The following are a few science fields where grapheme may be used in the future. Biological Engineering graphene offers a large surface area, high electrical conductivity, thinness and strength, it would make a good contender for the development of fast and efficient bioelectric sensory devices. The bioelectric sensory devices would be able to monitor such things as glucose levels, haemoglobin levels, cholesterol and even DNA sequencing. Eventually graphene would be used as an antibiotic or even anticancer treatment. Furthermore, due to its molecular make-up and potential biocompatibility, it could be utilized in the process of tissue regeneration. Optical Electronics Graphene will soon be used on a commercial scale in optoelectronics, including touchscreeens, liquid crystal displays (LCD). In order for graohene to be used in the optical electronics field, it must be able to transmit more than 90% of light, offer high electrical conductive properties with low electrical resistance. Graphene being nearly transparent, being able to transmit 97.7% of light and the other requirements as mentioned...

Words: 763 - Pages: 4

Free Essay

Chap 3 Summary

...Claro Garcia NT1110 CS & L April 9, 2014 Chapter 3 Summary In the world of computers, input/output (I/O) devices are utilized to enhance, configure and control data transfer between the computer and external devices in a variety of ways. These devices use ‘ports’ to connect to either internal or external hardware to and from the computer. The ports are then linked to copper circuits and memory that communicate to the computer CPU, RAM and ports. This enables data transfer between these I/O devices and the computer. Nowadays, the Universal Serial Bus (USB) port is considered to be the most important I/O port among all other I/O ports because it has replaced PS/2 (mini DIN) mouse and keyboard, serial (COM), and parallel (LPT) ports in recent computer systems and providing greater speed. A recent computer desktop system has at least four USB ports and can support up to eight front-and-rear mounted USB ports. The three standard types of USB ports are (1) USB 1.1, (2) USB 2.0 a.k.a Hi-Speed USB -and (3) USB 3.0 a.k.a Superspeed USB and use either Series A a.k.a Type A or Series B a.k.a Type B types of connectors. Adding more USB ports can be done by using motherboard connectors for USB header cables, hubs and add-on cards. Serial (COM) I/O ports also known as RS-232 ports are used for external modems, serial mouse, plotters, label printers, serial printers, PDA docking stations, digital cameras and PC-to-PC connections used by file transfer programs such as DirectCable...

Words: 1168 - Pages: 5

Free Essay

New Generation Signage Displays with Lcd Panel Resizing Technology

...April 15, 2013 New Generation Signage Displays with LCD Panel Resizing Technology By Esther Lin, Product Manager, Industrial Display Solutions Digital signage is an innovative medium for targeted information, entertainment, promotions and advertising, delivered in visually rich multimedia formats designed to attract consumers. Since digital signage so ubiquitous these days, people no longer ask what it is because digital signage has matured into a fully developed, versatile product that has adapted to many different applications and environments. Applications are constantly diversifying and we are now seeing semi-transparent digital signage displays (with products inside), large-format multi-touch displays, video walls, and tiles (smaller displays that can be configured in new ways), and interactive digital signage that aims to give consumers a more fun, educational and enhanced customer experience that helps drive sales. Digital signage displays now come in unusual shapes or configurations but 42" and above are the most common sizes. However, large-sized displays with conventional aspect ratios have limitations— in locations where they are restricted in height or physical space, like on elevators, buses, or in the transportation and medical markets. LED signages seem to be a good fit for these kinds of space-limited applications; however, LEDs are usually heavy, power consuming, and display low-resolution images. www.advantech.com LCD Panel Resizing Technology ...

Words: 1454 - Pages: 6