white lines on a tft display made in china

I recently got a new LCD TFT Display Shield and when I try anything it only shows white! I can use the touchscreen library with no problems and can get coordinates but i can"t show anything on the display! I just tried with the ADAFRUIT library and another one called TFTLCD.

white lines on a tft display made in china

In this article, you will learn how to use TFT LCDs by Arduino boards. From basic commands to professional designs and technics are all explained here.

In electronic’s projects, creating an interface between user and system is very important. This interface could be created by displaying useful data, a menu, and ease of access. A beautiful design is also very important.

There are several components to achieve this. LEDs,  7-segments, Character and Graphic displays, and full-color TFT LCDs. The right component for your projects depends on the amount of data to be displayed, type of user interaction, and processor capacity.

TFT LCD is a variant of a liquid-crystal display (LCD) that uses thin-film-transistor (TFT) technology to improve image qualities such as addressability and contrast. A TFT LCD is an active matrix LCD, in contrast to passive matrix LCDs or simple, direct-driven LCDs with a few segments.

In Arduino-based projects, the processor frequency is low. So it is not possible to display complex, high definition images and high-speed motions. Therefore, full-color TFT LCDs can only be used to display simple data and commands.

In this article, we have used libraries and advanced technics to display data, charts, menu, etc. with a professional design. This can move your project presentation to a higher level.

In electronic’s projects, creating an interface between user and system is very important. This interface could be created by displaying useful data, a menu, and ease of access. A beautiful design is also very important.

There are several components to achieve this. LEDs,  7-segments, Character and Graphic displays, and full-color TFT LCDs. The right component for your projects depends on the amount of data to be displayed, type of user interaction, and processor capacity.

TFT LCD is a variant of a liquid-crystal display (LCD) that uses thin-film-transistor (TFT) technology to improve image qualities such as addressability and contrast. A TFT LCD is an active matrix LCD, in contrast to passive matrix LCDs or simple, direct-driven LCDs with a few segments.

In Arduino-based projects, the processor frequency is low. So it is not possible to display complex, high definition images and high-speed motions. Therefore, full-color TFT LCDs can only be used to display simple data and commands.

In this article, we have used libraries and advanced technics to display data, charts, menu, etc. with a professional design. This can move your project presentation to a higher level.

Size of displays affects your project parameters. Bigger Display is not always better. if you want to display high-resolution images and signs, you should choose a big size display with higher resolution. But it decreases the speed of your processing, needs more space and also needs more current to run.

After choosing the right display, It’s time to choose the right controller. If you want to display characters, tests, numbers and static images and the speed of display is not important, the Atmega328 Arduino boards (such as Arduino UNO) are a proper choice. If the size of your code is big, The UNO board may not be enough. You can use Arduino Mega2560 instead. And if you want to show high resolution images and motions with high speed, you should use the ARM core Arduino boards such as Arduino DUE.

In electronics/computer hardware a display driver is usually a semiconductor integrated circuit (but may alternatively comprise a state machine made of discrete logic and other components) which provides an interface function between a microprocessor, microcontroller, ASIC or general-purpose peripheral interface and a particular type of display device, e.g. LCD, LED, OLED, ePaper, CRT, Vacuum fluorescent or Nixie.

The display driver will typically accept commands and data using an industry-standard general-purpose serial or parallel interface, such as TTL, CMOS, RS232, SPI, I2C, etc. and generate signals with suitable voltage, current, timing and demultiplexing to make the display show the desired text or image.

The LCDs manufacturers use different drivers in their products. Some of them are more popular and some of them are very unknown. To run your display easily, you should use Arduino LCDs libraries and add them to your code. Otherwise running the display may be very difficult. There are many free libraries you can find on the internet but the important point about the libraries is their compatibility with the LCD’s driver. The driver of your LCD must be known by your library. In this article, we use the Adafruit GFX library and MCUFRIEND KBV library and example codes. You can download them from the following links.

You must add the library and then upload the code. If it is the first time you run an Arduino board, don’t worry. Just follow these steps:Go to www.arduino.cc/en/Main/Software and download the software of your OS. Install the IDE software as instructed.

By these two functions, You can find out the resolution of the display. Just add them to the code and put the outputs in a uint16_t variable. Then read it from the Serial port by Serial.println(); . First add Serial.begin(9600); in setup().

First you should convert your image to hex code. Download the software from the following link. if you don’t want to change the settings of the software, you must invert the color of the image and make the image horizontally mirrored and rotate it 90 degrees counterclockwise. Now add it to the software and convert it. Open the exported file and copy the hex code to Arduino IDE. x and y are locations of the image. sx and sy are sizes of image. you can change the color of the image in the last input.

Upload your image and download the converted file that the UTFT libraries can process. Now copy the hex code to Arduino IDE. x and y are locations of the image. sx and sy are size of the image.

In this template, We just used a string and 8 filled circles that change their colors in order. To draw circles around a static point ,You can use sin();  and cos(); functions. you should define the PI number . To change colors, you can use color565(); function and replace your RGB code.

In this template, We converted a .jpg image to .c file and added to the code, wrote a string and used the fade code to display. Then we used scroll code to move the screen left. Download the .h file and add it to the folder of the Arduino sketch.

In this template, We used sin(); and cos(); functions to draw Arcs with our desired thickness and displayed number by text printing function. Then we converted an image to hex code and added them to the code and displayed the image by bitmap function. Then we used draw lines function to change the style of the image. Download the .h file and add it to the folder of the Arduino sketch.

In this template, We created a function which accepts numbers as input and displays them as a pie chart. We just use draw arc and filled circle functions.

In this template, We added a converted image to code and then used two black and white arcs to create the pointer of volumes.  Download the .h file and add it to the folder of the Arduino sketch.

In this template, We added a converted image and use the arc and print function to create this gauge.  Download the .h file and add it to folder of the Arduino sketch.

while (a < b) { Serial.println(a); j = 80 * (sin(PI * a / 2000)); i = 80 * (cos(PI * a / 2000)); j2 = 50 * (sin(PI * a / 2000)); i2 = 50 * (cos(PI * a / 2000)); tft.drawLine(i2 + 235, j2 + 169, i + 235, j + 169, tft.color565(0, 255, 255)); tft.fillRect(200, 153, 75, 33, 0x0000); tft.setTextSize(3); tft.setTextColor(0xffff); if ((a/20)>99)

while (b < a) { j = 80 * (sin(PI * a / 2000)); i = 80 * (cos(PI * a / 2000)); j2 = 50 * (sin(PI * a / 2000)); i2 = 50 * (cos(PI * a / 2000)); tft.drawLine(i2 + 235, j2 + 169, i + 235, j + 169, tft.color565(0, 0, 0)); tft.fillRect(200, 153, 75, 33, 0x0000); tft.setTextSize(3); tft.setTextColor(0xffff); if ((a/20)>99)

In this template, We display simple images one after each other very fast by bitmap function. So you can make your animation by this trick.  Download the .h file and add it to folder of the Arduino sketch.

In this template, We just display some images by RGBbitmap and bitmap functions. Just make a code for touchscreen and use this template.  Download the .h file and add it to folder of the Arduino sketch.

The speed of playing all the GIF files are edited and we made them faster or slower for better understanding. The speed of motions depends on the speed of your processor or type of code or size and thickness of elements in the code.

white lines on a tft display made in china

A thin-film-transistor liquid-crystal display (TFT LCD) is a variant of a liquid-crystal display that uses thin-film-transistor technologyactive matrix LCD, in contrast to passive matrix LCDs or simple, direct-driven (i.e. with segments directly connected to electronics outside the LCD) LCDs with a few segments.

In February 1957, John Wallmark of RCA filed a patent for a thin film MOSFET. Paul K. Weimer, also of RCA implemented Wallmark"s ideas and developed the thin-film transistor (TFT) in 1962, a type of MOSFET distinct from the standard bulk MOSFET. It was made with thin films of cadmium selenide and cadmium sulfide. The idea of a TFT-based liquid-crystal display (LCD) was conceived by Bernard Lechner of RCA Laboratories in 1968. In 1971, Lechner, F. J. Marlowe, E. O. Nester and J. Tults demonstrated a 2-by-18 matrix display driven by a hybrid circuit using the dynamic scattering mode of LCDs.T. Peter Brody, J. A. Asars and G. D. Dixon at Westinghouse Research Laboratories developed a CdSe (cadmium selenide) TFT, which they used to demonstrate the first CdSe thin-film-transistor liquid-crystal display (TFT LCD).active-matrix liquid-crystal display (AM LCD) using CdSe TFTs in 1974, and then Brody coined the term "active matrix" in 1975.high-resolution and high-quality electronic visual display devices use TFT-based active matrix displays.

The liquid crystal displays used in calculators and other devices with similarly simple displays have direct-driven image elements, and therefore a voltage can be easily applied across just one segment of these types of displays without interfering with the other segments. This would be impractical for a large display, because it would have a large number of (color) picture elements (pixels), and thus it would require millions of connections, both top and bottom for each one of the three colors (red, green and blue) of every pixel. To avoid this issue, the pixels are addressed in rows and columns, reducing the connection count from millions down to thousands. The column and row wires attach to transistor switches, one for each pixel. The one-way current passing characteristic of the transistor prevents the charge that is being applied to each pixel from being drained between refreshes to a display"s image. Each pixel is a small capacitor with a layer of insulating liquid crystal sandwiched between transparent conductive ITO layers.

The circuit layout process of a TFT-LCD is very similar to that of semiconductor products. However, rather than fabricating the transistors from silicon, that is formed into a crystalline silicon wafer, they are made from a thin film of amorphous silicon that is deposited on a glass panel. The silicon layer for TFT-LCDs is typically deposited using the PECVD process.

Polycrystalline silicon is sometimes used in displays requiring higher TFT performance. Examples include small high-resolution displays such as those found in projectors or viewfinders. Amorphous silicon-based TFTs are by far the most common, due to their lower production cost, whereas polycrystalline silicon TFTs are more costly and much more difficult to produce.

The twisted nematic display is one of the oldest and frequently cheapest kind of LCD display technologies available. TN displays benefit from fast pixel response times and less smearing than other LCD display technology, but suffer from poor color reproduction and limited viewing angles, especially in the vertical direction. Colors will shift, potentially to the point of completely inverting, when viewed at an angle that is not perpendicular to the display. Modern, high end consumer products have developed methods to overcome the technology"s shortcomings, such as RTC (Response Time Compensation / Overdrive) technologies. Modern TN displays can look significantly better than older TN displays from decades earlier, but overall TN has inferior viewing angles and poor color in comparison to other technology.

Most TN panels can represent colors using only six bits per RGB channel, or 18 bit in total, and are unable to display the 16.7 million color shades (24-bit truecolor) that are available using 24-bit color. Instead, these panels display interpolated 24-bit color using a dithering method that combines adjacent pixels to simulate the desired shade. They can also use a form of temporal dithering called Frame Rate Control (FRC), which cycles between different shades with each new frame to simulate an intermediate shade. Such 18 bit panels with dithering are sometimes advertised as having "16.2 million colors". These color simulation methods are noticeable to many people and highly bothersome to some.gamut (often referred to as a percentage of the NTSC 1953 color gamut) are also due to backlighting technology. It is not uncommon for older displays to range from 10% to 26% of the NTSC color gamut, whereas other kind of displays, utilizing more complicated CCFL or LED phosphor formulations or RGB LED backlights, may extend past 100% of the NTSC color gamut, a difference quite perceivable by the human eye.

The transmittance of a pixel of an LCD panel typically does not change linearly with the applied voltage,sRGB standard for computer monitors requires a specific nonlinear dependence of the amount of emitted light as a function of the RGB value.

In-plane switching was developed by Hitachi Ltd. in 1996 to improve on the poor viewing angle and the poor color reproduction of TN panels at that time.

Initial iterations of IPS technology were characterised by slow response time and a low contrast ratio but later revisions have made marked improvements to these shortcomings. Because of its wide viewing angle and accurate color reproduction (with almost no off-angle color shift), IPS is widely employed in high-end monitors aimed at professional graphic artists, although with the recent fall in price it has been seen in the mainstream market as well. IPS technology was sold to Panasonic by Hitachi.

Most panels also support true 8-bit per channel color. These improvements came at the cost of a higher response time, initially about 50 ms. IPS panels were also extremely expensive.

IPS has since been superseded by S-IPS (Super-IPS, Hitachi Ltd. in 1998), which has all the benefits of IPS technology with the addition of improved pixel refresh timing.

In 2004, Hydis Technologies Co., Ltd licensed its AFFS patent to Japan"s Hitachi Displays. Hitachi is using AFFS to manufacture high end panels in their product line. In 2006, Hydis also licensed its AFFS to Sanyo Epson Imaging Devices Corporation.

It achieved pixel response which was fast for its time, wide viewing angles, and high contrast at the cost of brightness and color reproduction.Response Time Compensation) technologies.

Less expensive PVA panels often use dithering and FRC, whereas super-PVA (S-PVA) panels all use at least 8 bits per color component and do not use color simulation methods.BRAVIA LCD TVs offer 10-bit and xvYCC color support, for example, the Bravia X4500 series. S-PVA also offers fast response times using modern RTC technologies.

When the field is on, the liquid crystal molecules start to tilt towards the center of the sub-pixels because of the electric field; as a result, a continuous pinwheel alignment (CPA) is formed; the azimuthal angle rotates 360 degrees continuously resulting in an excellent viewing angle. The ASV mode is also called CPA mode.

A technology developed by Samsung is Super PLS, which bears similarities to IPS panels, has wider viewing angles, better image quality, increased brightness, and lower production costs. PLS technology debuted in the PC display market with the release of the Samsung S27A850 and S24A850 monitors in September 2011.

TFT dual-transistor pixel or cell technology is a reflective-display technology for use in very-low-power-consumption applications such as electronic shelf labels (ESL), digital watches, or metering. DTP involves adding a secondary transistor gate in the single TFT cell to maintain the display of a pixel during a period of 1s without loss of image or without degrading the TFT transistors over time. By slowing the refresh rate of the standard frequency from 60 Hz to 1 Hz, DTP claims to increase the power efficiency by multiple orders of magnitude.

Due to the very high cost of building TFT factories, there are few major OEM panel vendors for large display panels. The glass panel suppliers are as follows:

External consumer display devices like a TFT LCD feature one or more analog VGA, DVI, HDMI, or DisplayPort interface, with many featuring a selection of these interfaces. Inside external display devices there is a controller board that will convert the video signal using color mapping and image scaling usually employing the discrete cosine transform (DCT) in order to convert any video source like CVBS, VGA, DVI, HDMI, etc. into digital RGB at the native resolution of the display panel. In a laptop the graphics chip will directly produce a signal suitable for connection to the built-in TFT display. A control mechanism for the backlight is usually included on the same controller board.

The low level interface of STN, DSTN, or TFT display panels use either single ended TTL 5 V signal for older displays or TTL 3.3 V for slightly newer displays that transmits the pixel clock, horizontal sync, vertical sync, digital red, digital green, digital blue in parallel. Some models (for example the AT070TN92) also feature input/display enable, horizontal scan direction and vertical scan direction signals.

New and large (>15") TFT displays often use LVDS signaling that transmits the same contents as the parallel interface (Hsync, Vsync, RGB) but will put control and RGB bits into a number of serial transmission lines synchronized to a clock whose rate is equal to the pixel rate. LVDS transmits seven bits per clock per data line, with six bits being data and one bit used to signal if the other six bits need to be inverted in order to maintain DC balance. Low-cost TFT displays often have three data lines and therefore only directly support 18 bits per pixel. Upscale displays have four or five data lines to support 24 bits per pixel (truecolor) or 30 bits per pixel respectively. Panel manufacturers are slowly replacing LVDS with Internal DisplayPort and Embedded DisplayPort, which allow sixfold reduction of the number of differential pairs.

Backlight intensity is usually controlled by varying a few volts DC, or generating a PWM signal, or adjusting a potentiometer or simply fixed. This in turn controls a high-voltage (1.3 kV) DC-AC inverter or a matrix of LEDs. The method to control the intensity of LED is to pulse them with PWM which can be source of harmonic flicker.

The bare display panel will only accept a digital video signal at the resolution determined by the panel pixel matrix designed at manufacture. Some screen panels will ignore the LSB bits of the color information to present a consistent interface (8 bit -> 6 bit/color x3).

With analogue signals like VGA, the display controller also needs to perform a high speed analog to digital conversion. With digital input signals like DVI or HDMI some simple reordering of the bits is needed before feeding it to the rescaler if the input resolution doesn"t match the display panel resolution.

The statements are applicable to Merck KGaA as well as its competitors JNC Corporation (formerly Chisso Corporation) and DIC (formerly Dainippon Ink & Chemicals). All three manufacturers have agreed not to introduce any acutely toxic or mutagenic liquid crystals to the market. They cover more than 90 percent of the global liquid crystal market. The remaining market share of liquid crystals, produced primarily in China, consists of older, patent-free substances from the three leading world producers and have already been tested for toxicity by them. As a result, they can also be considered non-toxic.

Kawamoto, H. (2012). "The Inventors of TFT Active-Matrix LCD Receive the 2011 IEEE Nishizawa Medal". Journal of Display Technology. 8 (1): 3–4. Bibcode:2012JDisT...8....3K. doi:10.1109/JDT.2011.2177740. ISSN 1551-319X.

Brody, T. Peter; Asars, J. A.; Dixon, G. D. (November 1973). "A 6 × 6 inch 20 lines-per-inch liquid-crystal display panel". 20 (11): 995–1001. Bibcode:1973ITED...20..995B. doi:10.1109/T-ED.1973.17780. ISSN 0018-9383.

Richard Ahrons (2012). "Industrial Research in Microcircuitry at RCA: The Early Years, 1953–1963". 12 (1). IEEE Annals of the History of Computing: 60–73. Cite journal requires |journal= (help)

K. H. Lee; H. Y. Kim; K. H. Park; S. J. Jang; I. C. Park & J. Y. Lee (June 2006). "A Novel Outdoor Readability of Portable TFT-LCD with AFFS Technology". SID Symposium Digest of Technical Papers. AIP. 37 (1): 1079–82. doi:10.1889/1.2433159. S2CID 129569963.

Kim, Sae-Bom; Kim, Woong-Ki; Chounlamany, Vanseng; Seo, Jaehwan; Yoo, Jisu; Jo, Hun-Je; Jung, Jinho (15 August 2012). "Identification of multi-level toxicity of liquid crystal display wastewater toward Daphnia magna and Moina macrocopa". Journal of Hazardous Materials. Seoul, Korea; Laos, Lao. 227–228: 327–333. doi:10.1016/j.jhazmat.2012.05.059. PMID 22677053.

white lines on a tft display made in china

Flat-panel displays are thin panels of glass or plastic used for electronically displaying text, images, or video. Liquid crystal displays (LCD), OLED (organic light emitting diode) and microLED displays are not quite the same; since LCD uses a liquid crystal that reacts to an electric current blocking light or allowing it to pass through the panel, whereas OLED/microLED displays consist of electroluminescent organic/inorganic materials that generate light when a current is passed through the material. LCD, OLED and microLED displays are driven using LTPS, IGZO, LTPO, and A-Si TFT transistor technologies as their backplane using ITO to supply current to the transistors and in turn to the liquid crystal or electroluminescent material. Segment and passive OLED and LCD displays do not use a backplane but use indium tin oxide (ITO), a transparent conductive material, to pass current to the electroluminescent material or liquid crystal. In LCDs, there is an even layer of liquid crystal throughout the panel whereas an OLED display has the electroluminescent material only where it is meant to light up. OLEDs, LCDs and microLEDs can be made flexible and transparent, but LCDs require a backlight because they cannot emit light on their own like OLEDs and microLEDs.

Liquid-crystal display (or LCD) is a thin, flat panel used for electronically displaying information such as text, images, and moving pictures. They are usually made of glass but they can also be made out of plastic. Some manufacturers make transparent LCD panels and special sequential color segment LCDs that have higher than usual refresh rates and an RGB backlight. The backlight is synchronized with the display so that the colors will show up as needed. The list of LCD manufacturers:

Organic light emitting diode (or OLED displays) is a thin, flat panel made of glass or plastic used for electronically displaying information such as text, images, and moving pictures. OLED panels can also take the shape of a light panel, where red, green and blue light emitting materials are stacked to create a white light panel. OLED displays can also be made transparent and/or flexible and these transparent panels are available on the market and are widely used in smartphones with under-display optical fingerprint sensors. LCD and OLED displays are available in different shapes, the most prominent of which is a circular display, which is used in smartwatches. The list of OLED display manufacturers:

MicroLED displays is an emerging flat-panel display technology consisting of arrays of microscopic LEDs forming the individual pixel elements. Like OLED, microLED offers infinite contrast ratio, but unlike OLED, microLED is immune to screen burn-in, and consumes less power while having higher light output, as it uses LEDs instead of organic electroluminescent materials, The list of MicroLED display manufacturers:

Sony produces and sells commercial MicroLED displays called CLEDIS (Crystal-LED Integrated Displays, also called Canvas-LED) in small quantities.video walls.

LCDs are made in a glass substrate. For OLED, the substrate can also be plastic. The size of the substrates are specified in generations, with each generation using a larger substrate. For example, a 4th generation substrate is larger in size than a 3rd generation substrate. A larger substrate allows for more panels to be cut from a single substrate, or for larger panels to be made, akin to increasing wafer sizes in the semiconductor industry.

2015, sold to giantplus and tce photomasks, gen 3 still operated by giantplus, gen 4 line sold to giantplus, equipment sold and line demolished, remainder operated by tce

Cantwell, John; Hayashi, Takabumi (January 4, 2019). Paradigm Shift in Technologies and Innovation Systems. Springer Nature. ISBN 9789813293502 – via Google Books.

"Samsung Display has halted local Gen-8 LCD lines: sources". THE ELEC, Korea Electronics Industry Media. August 16, 2019. Archived from the original on April 3, 2020. Retrieved December 18, 2019.

"TCL to Build World"s Largest Gen 11 LCD Panel Factory". www.businesswire.com. May 19, 2016. Archived from the original on April 2, 2018. Retrieved April 1, 2018.

"Panel Manufacturers Start to Operate Their New 8th Generation LCD Lines". 대한민국 IT포털의 중심! 이티뉴스. June 19, 2017. Archived from the original on June 30, 2019. Retrieved June 30, 2019.

"TCL"s Panel Manufacturer CSOT Commences Production of High Generation Panel Modules". www.businesswire.com. June 14, 2018. Archived from the original on June 30, 2019. Retrieved June 30, 2019.

"Business Place Information – Global Operation | SAMSUNG DISPLAY". www.samsungdisplay.com. Archived from the original on 2018-03-26. Retrieved 2018-04-01.

"Samsung Display Considering Halting Some LCD Production Lines". 비즈니스코리아 - BusinessKorea. August 16, 2019. Archived from the original on April 5, 2020. Retrieved December 19, 2019.

Herald, The Korea (July 6, 2016). "Samsung Display accelerates transition from LCD to OLED". www.koreaherald.com. Archived from the original on April 1, 2018. Retrieved April 1, 2018.

Byeonghwa, Yeon. "Business Place Information – Global Operation – SAMSUNG DISPLAY". Samsungdisplay.com. Archived from the original on 2018-03-26. Retrieved 2018-04-01.

www.etnews.com (30 June 2017). "Samsung Display to Construct World"s Biggest OLED Plant". Archived from the original on 2019-06-09. Retrieved 2019-06-09.

Colantonio, Andrea; Burdett, Richard; Rode, Philipp (2013-08-15). Transforming Urban Economies: Policy Lessons from European and Asian Cities. Routledge. ISBN 9781134622160. Archived from the original on 2019-01-01. Retrieved 2019-06-09.

Shilov, Anton. "LG"s New 55+ inch OLED Plant in China Opens: Over 1m+ per Year". www.anandtech.com. Archived from the original on 2019-09-14. Retrieved 2019-12-18.

www.wisechip.com.tw. "WiseChip History – WiseChip Semiconductor Inc". www.wisechip.com.tw. Archived from the original on 2018-02-17. Retrieved 2018-02-17.

"China"s BOE to have world"s largest TFT-LCD+AMOLED capacity in 2019". ihsmarkit.com. 2017-03-22. Archived from the original on 2019-08-16. Retrieved 2019-08-17.

Shilov, Anton. "JOLED Starts Construction of New Printed OLED Facility". www.anandtech.com. Archived from the original on 2019-06-30. Retrieved 2019-06-30.

Pooler, Michael (29 September 2015). "Subscribe to read". Financial Times. Archived from the original on 2019-10-25. Retrieved 2019-10-25. Cite uses generic title (help)

white lines on a tft display made in china

LCD manufacturers are mainly located in China, Taiwan, Korea, Japan. Almost all the lcd or TFT manufacturers have built or moved their lcd plants to China on the past decades. Top TFT lcd and oled display manufactuers including BOE, COST, Tianma, IVO from China mainland, and Innolux, AUO from Tianwan, but they have established factories in China mainland as well, and other small-middium sizes lcd manufacturers in China.

China flat display revenue has reached to Sixty billion US Dollars from 2020. there are 35 tft lcd lines (higher than 6 generation lines) in China,China is the best place for seeking the lcd manufacturers.

The first half of 2021, BOE revenue has been reached to twenty billion US dollars, increased more than 90% than thesame time of 2020, the main revenue is from TFT LCD, AMoled. BOE flexible amoled screens" output have been reach to 25KK pcs at the first half of 2021.the new display group Micro LED revenue has been increased to 0.25% of the total revenue as well.

Established in 1993 BOE Technology Group Co. Ltd. is the top1 tft lcd manufacturers in China, headquarter in Beijing, China, BOE has 4 lines of G6 AMOLED production lines that can make flexible OLED, BOE is the authorized screen supplier of Apple, Huawei, Xiaomi, etc,the first G10.5 TFT line is made in BOE.BOE main products is in large sizes of tft lcd panel,the maximum lcd sizes what BOE made is up to 110 inch tft panel, 8k resolution. BOE is the bigger supplier for flexible AM OLED in China.

As the market forecast of 2022, iPhone OLED purchasing quantity would reach 223 million pcs, more 40 million than 2021, the main suppliers of iPhone OLED screen are from Samsung display (61%), LG display (25%), BOE (14%). Samsung also plan to purchase 3.5 million pcs AMOLED screen from BOE for their Galaxy"s screen in 2022.

Technology Co., Ltd), established in 2009. CSOT is the company from TCL, CSOT has eight tft LCD panel plants, four tft lcd modules plants in Shenzhen, Wuhan, Huizhou, Suzhou, Guangzhou and in India. CSOTproviding panels and modules for TV and mobile

three decades.Tianma is the leader of small to medium size displays in technologyin China. Tianma have the tft panel factories in Shenzhen, Shanhai, Chendu, Xiamen city, Tianma"s Shenzhen factory could make the monochrome lcd panel and LCD module, TFT LCD module, TFT touch screen module. Tianma is top 1 manufactures in Automotive display screen and LTPS TFT panel.

Tianma and BOE are the top grade lcd manufacturers in China, because they are big lcd manufacturers, their minimum order quantity would be reached 30k pcs MOQ for small sizes lcd panel. price is also top grade, it might be more expensive 50%~80% than the market price.

Panda electronics is established in 1936, located in Nanjing, Jiangshu, China. Panda has a G6 and G8.6 TFT panel lines (bought from Sharp). The TFT panel technologies are mainly from Sharp, but its technology is not compliance to the other tft panels from other tft manufactures, it lead to the capacity efficiency is lower than other tft panel manufacturers. the latest news in 2022, Panda might be bougt to BOE in this year.

Established in 2005, IVO is located in Kunsan,Jiangshu province, China, IVO have more than 3000 employee, 400 R&D employee, IVO have a G-5 tft panel production line, IVO products are including tft panel for notebook, automotive display, smart phone screen. 60% of IVO tft panel is for notebook application (TOP 6 in the worldwide), 23% for smart phone, 11% for automotive.

Besides the lcd manufacturers from China mainland,inGreater China region,there are other lcd manufacturers in Taiwan,even they started from Taiwan, they all have built the lcd plants in China mainland as well,let"s see the lcd manufacturers in Taiwan:

Chimei Innolux Corporation was the successor company, and it initially preserved the Chimei name. In order to differentiate itself from the ChiMei brand, the company was renamed "Innolux Corporation" in December 2012.

Innolux"s 14 plants in Taiwan possess a complete range of 3.5G, 4G, 4.5G, 5G, 6G, 7.5G, and 8.5G-8.6G production line in Taiwan and China mainland, offering a full range of large/medium/small LCD panels and touch-control screens.including 4K2K ultra-high resolution, 3D naked eye, IGZO, LTPS, AMOLED, OLED, and touch-control solutions,full range of TFT LCD panel modules and touch panels, including TV panels, desktop monitors, notebook computer panels, small and medium-sized panels, and medical and automotive panels.

AUO is the tft lcd panel manufacturers in Taiwan,AUO has the lcd factories in Tianma and China mainland,AUOOffer the full range of display products with industry-leading display technology,such as 8K4K resolution TFT lcd panel, wide color gamut, high dynamic range, mini LED backlight, ultra high refresh rate, ultra high brightness and low power consumption. AUO is also actively developing curved, super slim, bezel-less, extreme narrow bezel and free-form technologies that boast aesthetic beauty in terms of design.Micro LED, flexible and foldable AMOLED, and fingerprint sensing technologies were also developed for people to enjoy a new smart living experience.

Hannstar was found in 1998 in Taiwan, Hannstar display hasG5.3 TFT-LCD factory in Tainan and the Nanjing LCM/Touch factories, providing various products and focus on the vertical integration of industrial resources, creating new products for future applications and business models.

driver, backlight etc ,then make it to tft lcd module. so its price is also more expensive than many other lcd module manufacturers in China mainland.

Maclight is a China based display company, located in Shenzhen, China. ISO9001 certified, as a company that more than 10 years working experiences in display, Maclight has the good relationship with top tft panel manufacturers, it guarantee that we could provide a long term stable supply in our products, we commit our products with reliable quality and competitive prices.

Maclight products included monochrome lcd, TFT lcd module and OLED display, touch screen module, Maclight is special in custom lcd display, Sunlight readable tft lcd module, tft lcd with capacitive touch screen. Maclight is the leader of round lcd display. Maclight is also the long term supplier for many lcd companies in USA and Europe.

If you want tobuy lcd moduleorbuy tft screenfrom China with good quality and competitive price, Maclight would be a best choice for your glowing business.

white lines on a tft display made in china

In this Arduino touch screen tutorial we will learn how to use TFT LCD Touch Screen with Arduino. You can watch the following video or read the written tutorial below.

For this tutorial I composed three examples. The first example is distance measurement using ultrasonic sensor. The output from the sensor, or the distance is printed on the screen and using the touch screen we can select the units, either centimeters or inches.

The next example is controlling an RGB LED using these three RGB sliders. For example if we start to slide the blue slider, the LED will light up in blue and increase the light as we would go to the maximum value. So the sliders can move from 0 to 255 and with their combination we can set any color to the RGB LED,  but just keep in mind that the LED cannot represent the colors that much accurate.

The third example is a game. Actually it’s a replica of the popular Flappy Bird game for smartphones. We can play the game using the push button or even using the touch screen itself.

As an example I am using a 3.2” TFT Touch Screen in a combination with a TFT LCD Arduino Mega Shield. We need a shield because the TFT Touch screen works at 3.3V and the Arduino Mega outputs are 5 V. For the first example I have the HC-SR04 ultrasonic sensor, then for the second example an RGB LED with three resistors and a push button for the game example. Also I had to make a custom made pin header like this, by soldering pin headers and bend on of them so I could insert them in between the Arduino Board and the TFT Shield.

Here’s the circuit schematic. We will use the GND pin, the digital pins from 8 to 13, as well as the pin number 14. As the 5V pins are already used by the TFT Screen I will use the pin number 13 as VCC, by setting it right away high in the setup section of code.

As the code is a bit longer and for better understanding I will post the source code of the program in sections with description for each section. And at the end of this article I will post the complete source code.

I will use the UTFT and URTouch libraries made by Henning Karlsen. Here I would like to say thanks to him for the incredible work he has done. The libraries enable really easy use of the TFT Screens, and they work with many different TFT screens sizes, shields and controllers. You can download these libraries from his website, RinkyDinkElectronics.com and also find a lot of demo examples and detailed documentation of how to use them.

After we include the libraries we need to create UTFT and URTouch objects. The parameters of these objects depends on the model of the TFT Screen and Shield and these details can be also found in the documentation of the libraries.

Next we need to define the fonts that are coming with the libraries and also define some variables needed for the program. In the setup section we need to initiate the screen and the touch, define the pin modes for the connected sensor, the led and the button, and initially call the drawHomeSreen() custom function, which will draw the home screen of the program.

So now I will explain how we can make the home screen of the program. With the setBackColor() function we need to set the background color of the text, black one in our case. Then we need to set the color to white, set the big font and using the print() function, we will print the string “Arduino TFT Tutorial” at the center of the screen and 10 pixels  down the Y – Axis of the screen. Next we will set the color to red and draw the red line below the text. After that we need to set the color back to white, and print the two other strings, “by HowToMechatronics.com” using the small font and “Select Example” using the big font.

Next is the distance sensor button. First we need to set the color and then using the fillRoundRect() function we will draw the rounded rectangle. Then we will set the color back to white and using the drawRoundRect() function we will draw another rounded rectangle on top of the previous one, but this one will be without a fill so the overall appearance of the button looks like it has a frame. On top of the button we will print the text using the big font and the same background color as the fill of the button. The same procedure goes for the two other buttons.

Now we need to make the buttons functional so that when we press them they would send us to the appropriate example. In the setup section we set the character ‘0’ to the currentPage variable, which will indicate that we are at the home screen. So if that’s true, and if we press on the screen this if statement would become true and using these lines here we will get the X and Y coordinates where the screen has been pressed. If that’s the area that covers the first button we will call the drawDistanceSensor() custom function which will activate the distance sensor example. Also we will set the character ‘1’ to the variable currentPage which will indicate that we are at the first example. The drawFrame() custom function is used for highlighting the button when it’s pressed. The same procedure goes for the two other buttons.

drawDistanceSensor(); // It is called only once, because in the next iteration of the loop, this above if statement will be false so this funtion won"t be called. This function will draw the graphics of the first example.

getDistance(); // Gets distance from the sensor and this function is repeatedly called while we are at the first example in order to print the lasest results from the distance sensor

So the drawDistanceSensor() custom function needs to be called only once when the button is pressed in order to draw all the graphics of this example in similar way as we described for the home screen. However, the getDistance() custom function needs to be called repeatedly in order to print the latest results of the distance measured by the sensor.

Here’s that function which uses the ultrasonic sensor to calculate the distance and print the values with SevenSegNum font in green color, either in centimeters or inches. If you need more details how the ultrasonic sensor works you can check my particular tutorialfor that. Back in the loop section we can see what happens when we press the select unit buttons as well as the back button.

Ok next is the RGB LED Control example. If we press the second button, the drawLedControl() custom function will be called only once for drawing the graphic of that example and the setLedColor() custom function will be repeatedly called. In this function we use the touch screen to set the values of the 3 sliders from 0 to 255. With the if statements we confine the area of each slider and get the X value of the slider. So the values of the X coordinate of each slider are from 38 to 310 pixels and we need to map these values into values from 0 to 255 which will be used as a PWM signal for lighting up the LED. If you need more details how the RGB LED works you can check my particular tutorialfor that. The rest of the code in this custom function is for drawing the sliders. Back in the loop section we only have the back button which also turns off the LED when pressed.

In order the code to work and compile you will have to include an addition “.c” file in the same directory with the Arduino sketch. This file is for the third game example and it’s a bitmap of the bird. For more details how this part of the code work  you can check my particular tutorial. Here you can download that file:

drawDistanceSensor(); // It is called only once, because in the next iteration of the loop, this above if statement will be false so this funtion won"t be called. This function will draw the graphics of the first example.

getDistance(); // Gets distance from the sensor and this function is repeatedly called while we are at the first example in order to print the lasest results from the distance sensor

white lines on a tft display made in china

The basic feature of the liquid crystal is the ability to twist on 45 degrees or 90 degrees, relative to the axis of the particles arranged in parallel between both electrode surfaces.

In LCD the light transit through two polarizers, which are arranged perpendicular, then through the liquid crystal layer. The layer can block the transition of the light or change polarization. Finally, the light falls on the color filters, which give it a set colorcreating the image.

The LCD TFT screens are built of thin-film transistors. The transistor is produced by chemical vapor deposition (CVD), based on the use of liquid hydrogen mixture and silicon mixture in an organic solvent, and using the rotation application method of the thin semiconductor.

In the TFT matrix, each pixel is controlled by four transistors, whereone of them is responsible for brightness, and three remain for basic color (red, blue, green). As a result, this solution allows the high resolution, better color and generally higher parameters of displayed images  – comparing to common LCD matrix.

Because of the material the TFT is built from, which isglass, TFT displays havelow mechanical toughness,so can be easily damaged. The most popular damage of TFT is:

The horizontal lines on the screen (Fig. 3) may indicate an interruption of the ITO lines, which control the transistors. In most cases the whole line of the transistors would be interrupted, therefore the defects are observed as a line.

The majority of damage occurs during the assembly process in the end user devices. Too much pressure on the fragile TFT construction can damage the structure of the liquid crystal or electric lines.

We recommend that you are always careful during the process of assembling the module. This special treatment is necessary to protect the matrix of the display against being hit or put under too much pressure.

The module can be held strictly by the housing, and the unnecessary thrust on display should be avoided. The disassembling of the display housing is not recommended, because this process is very destructive and in most cases, it will leave you with a damaged TFT .

white lines on a tft display made in china

Cause: There are several possibilities that can cause white lines on an LCD screen. One would be high temperature on the logic board. Logic board drives the LCD panel and when it overheats can cause this display problem.

Solution: One solution would be to clean the vent holes around the TV. One possibility that I have experienced myself servicing is a bloated capacitor on the power supply board. The worst possibility is a defective LCD panel, which is costly to repair, and sometimes it’s more practical to buy a new TV set.

Cause: There are two IC’s on the mainboard and that probably caused the IC to overheat, which in turn caused the main controller board to malfunction. They may be possible panel failure. No signal from the mainboard to the LCD panel is the usual cause of solid white screen or flickering white screen.

If you have a white screen with error V3.41.0 flashing along the top, try this first– I pressed Exit and OK buttons together and was able to then click on input/source and bring up the HDMI input and, Hey, Presto! all working again.

Check the cable connecting the mainboard to the T-Con board, (LVDS cable) try reseating and cleaning it (you can use Isopropyl Alcohol). Clean the LVDS cable at both ends.

The most common cause for the white screen is missing 12V supply for the panel. Sometimes though, it can be something very simple like a loose LVDS cable on the panel side. If this is not the case, then you will need to check the 12 V supply on the LVDS cable on the main board side (usually 2-4 pins on the end/beginning of the connector). If the 12 V is there, you should check it is secured onto the panel, where the LDVS connects to.

white lines on a tft display made in china

This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

white lines on a tft display made in china

The TFT LCD screen display, for the general masses, is no longer a difficult noun. And it is another after semiconductor could create a large number of emerging technology products of the business turnover, more because of its features, thin so it than using the application scope of the cathode ray tube (CRT, cathode ray tube) display made by wider. Today, I’m going to talk about how the TFT LCD Touch Screen Display Works.

As I mentioned earlier, liquid-crystal displays (LCDs) refer to a bunch produced by using the TFT screen LCD display. Now for LCD displays the name is directed mostly used in notebook computers, or desktop computer applications display. Is the thin film transistor TFT LCD display. Abbreviation of TFT LCD. This kind of display form has two main characteristics, one is a thin film transistor, the other is TFT LCD itself. Let’s talk about the TFT screen itself.

We usually think of substances like water as three states, solid-liquid, and gas. The three states of material actually are for water, for different materials, a different state may exist.

As we want to talk about liquid crystal state is concerned, it is a state between solid and liquid, actually, this kind of state is only part of the material of a kind of phase change process (see figure 1), as long as the material has the above process, namely the state exists between solid and liquid, a physicist called liquid crystal.

This type of TFT LCD screen was first discovered, had been spent more than one hundred years ago. In 1888 AD, the Austrian botanist Friedrich Reinitzer, found in the observation from the plant refined out of benzoic acid cholesterol (cholesteryl benzoate) found that when the melting behavior of the compound heated to 145.5 ℃, Solid can melt, presents a kind of solid phase and liquid phase between the half gonorrhea melt flow of the liquid. This situation will always maintain ℃ temperature rise to 178.5 degrees, to form a clear isotropic liquid (isotropic liquid).

The next year, in 1889, the study of thermodynamic equilibrium and the phase transfer German physicist O.L Ehmann, compounds for a more detailed analysis of this. He found that under the polarizing microscope, half of the viscous liquid gonorrhea liquid compounds with different parts peculiar to the crystal birefringence (birefringence) of the optical properties, namely, optical interphase (optically anisotropic). It will be a name to this as the liquid crystal. Since then, scientists will be the nature of this new discovery, known as the fourth state material – LCD (liquid crystal). It at a specific temperature range can have the characteristics of the liquid and solid at the same time.

General with water, solid lattice in heating because it is over, began to heat and destroy the lattice, when the temperature exceeds melting point will be dissolved into a liquid. And cause the type of liquid crystal is different (see figure 2), when the solid heat does not directly into the liquid, will be dissolved to form a liquid crystal state. When you continue heating, it will only then dissolve into a liquid (isotropic liquid). This is called the secondary dissolution phenomenon.

The liquid crystal state, as the name implies, will be a solid lattice and the liquid. When the liquid crystal was found, because of a lot of more phyletic, In 1922, the results observed by g. Friedel with a polarizing microscope divided liquid crystals into Nematic Smectic and Cholesteric categories. However, if they were classified according to the order of molecular arrangement (see figure 3), they could be divided into the following four categories:

Its structure is composed of TFT LCD molecules stick together, forming a layer structure. It’s every layer of the molecular long axis direction parallel to each other. And the long axis direction for each layer plane is vertical or a tilt Angle. Due to its structure is very similar to crystals, so they are called phase. The order parameter S (the order parameter) tend to be 1. Type in layered crystal layer and interlayer bonding can fracture because of temperature, so the layer and interlayer sliding more easily. But each layer within the molecular bonding is stronger, so it is not easy to be interrupted. Therefore in the context of the monolayer, Its arranged orderly and viscosity is bigger. If we use the macroscopic phenomenon to describe the physical properties of liquid crystal, we can make a group of regional average points as the liquid crystal molecules are pointing in the direction of the arrow (director), which is the direction of a group of liquid crystal molecules regional average. And with lamellar liquid crystal, because of its structure, the TFT LCD molecules will cambium-like so can point to a vector of different classification of the different lamellar liquid crystal again. When the long axis of the liquid crystal molecules are vertical stand, Call it “Sematic A phase.” if stand long axis direction of the TFT LCD molecules have some Angle of tilt (tilt), call it “Sematic C phase”. In A, C and other letters to name, which was discovered in accordance with the order to address, and so on, there should be A “Semantic phase B is.” but later found A deformation phase B is C phase, And the liquid crystal molecules in the structure layer by layer, in addition to each layer of TFT LCD molecules have tilt Angle, the tilt Angle between layer by layer will form a helical structure.

Nematic is a Greek word, the word mean in the thread is the same as in English. Mainly because with the naked eye to observe the liquid crystal, it looks like a silk pattern. The LCD screen molecules on the space of the regular arrangement of one dimension, all rod long axis of the liquid crystal molecules will choose a particular direction (that is, pointing vector) as the main shaft and arranged parallel to each other. And don’t like lamellar liquid crystal has a layered structure. Compared with the layer column type liquid crystal alignment is no order, That is to say, its order parameter S is smaller than the lamellar liquid crystal, and its viscosity is smaller, so it is easier to flow (its flow mainly comes from the free movement of molecules in the long axis direction). Linear liquid crystal is the common TFT LCD display screen TN(Twisted nematic) type liquid crystal.

Most of the sources of the name, because are generated by the derivative of the cholesterol. But some without cholesterol structure of LCD screen with this liquid crystal phase. This kind of liquid crystal as shown in figure 5, if it is a layer of a layer to separate, would very much like a linear LCD screen. But look at the Z-axis, may find it pointing in the direction of the arrow will with layers and layers of different distribution, like a spiraling when the pointing vector rotate 360 degrees for molecular layer thickness is called a pitch. Because of its every layer like linear LCD, so also known as Chiral nematic phase. In terms of cholesterol crystal, and pointing in the direction vector of the vertical distribution of LCD screen molecules, due to the different point to vector, will have the different optical or electrical differences, thus has produced different features.

If we are according to the molecular weight of high and low points can be divided into liquid crystal polymer (polymer liquid crystal, the polymer in many of the liquid crystal molecules) and low molecular liquid crystal. This kind of classification of TFT LCD belongs to the application of the low molecular liquid crystal. If the reasons for the formation of liquid crystal state, because it can be divided into type temperature formation of liquid crystal state to a liquid crystal (thermotropic), and because of the concentration and the formation of a liquid crystal state type lyotropic liquid crystal (lyotropic).

In the classification of the mentioned before, Lamellar liquid crystal and liquid crystal of the linear type liquid crystal to cause the more common, as the temperature changes and form liquid crystal state. For the lyotropic liquid crystal, we need to consider the situation of molecules dissolved in a solvent. When the concentration is low, the molecular and mixed and disorderly, which are distributed in the solvent of the isotropic solution, but when higher concentration is greater than a certain critical concentration, because the molecule has no enough space to form mixed and disorderly, the distribution of molecular began to gather to form part of the rules, To reduce the space of the block. Therefore form different sex (anisotropic).

The solution so types lyotropic TFT screen molecules in the appropriate solvents reaches a certain critical concentration, the formation of liquid crystal state. Type lyotropic liquid crystal is one of the best examples that is soap. When soap bubbles in the water will not be at once into a liquid, and the bubble in the water for a long time, after the formation of white matter, is its liquid crystal state.

Due to the structure of the liquid crystal molecules for different parties (Anisotropic), so caused by the photoelectric effect will vary because of a different direction, in short, that is, the liquid crystal molecules in the dielectric coefficient and refractive index, and so on photoelectric properties have different sex, so we can use these properties to change the intensity of the incident light, so that the formation of gray-scale, to apply on the display component. We’ll discuss below, is one of the characteristics of liquid crystal belongs to the optical and electrical related, about the following items:

Our dielectric coefficient can be separated into two directions respectively is epsilon / / (and point to parallel component) and epsilon coming (a component perpendicular to the pointing vector). When the epsilon / / > epsilon coming then called the dielectric coefficient of different parts of LCD, can be used in parallel coordination. And epsilon / / < epsilon is called the dielectric coefficient of the different part coming negative type of TFT screen, only can be used in vertical coordination will need the photoelectric effect. When the applied electric field, the liquid crystal molecules will vary with dielectric coefficient is positive or negative, To determine whether the orientation of the liquid crystal molecules is parallel or perpendicular to the electric field, to determine whether the light penetrates. Now on most commonly used type TN LCD TFT LCD that belongs to the dielectric coefficient are type liquid crystal. When the dielectric coefficient of square difference Δ epsilon (= epsilon / / – epsilon) comes, the greater the LCD of the critical voltage (threshold voltage) will be smaller. So the LCD can be in the low voltage operation.

Liquid crystal molecules are also known as heterotropic crystals because they are mostly formed from rod-like or saucer-like molecules, and thus have different physical properties that are parallel to or perpendicular to the long axis of the molecule. Like the dielectric perp, the refractive index is also divided into vectors perpendicular to and parallel to the vector, namely, n // and n perpendicular to each other.

In addition, for uniaxial crystal, there are two different definitions of refraction coefficient, one is no, which refers to the refraction coefficient of ordinary ray, so it is shortened to no, and ordinary ray refers to the electric field component of its light wave is perpendicular to the optical axis, and the other is ne, which refers to the refraction coefficient of extraordinary ray. The extraordinary ray is referred to as the light of the electric field component parallel to the optical axis. At the same time, it defines the birefringence (birefringence) Δ n = no-no for the above two refractive index differences.

In accordance with the described above, the lamellar liquid crystal, linear liquid crystal, and LCD screen for cholesterol levels, because of its long liquid crystal molecules like a stick, so point to the direction of the vector and the molecular long axis parallel. To be defined with reference to the refraction coefficient of a single optical axis crystal, it will have two refractive indexes, respectively is perpendicular to the direction of the long axis of the liquid crystal n coming (= ne) and parallel to the long axis of the liquid crystal direction n / / (= no), so when the incident light liquid crystal, will be affected by two refractive indexes, cause in the vertical long axis of the liquid crystal and LCD long axis parallel to the direction of the speed of light will be different.

If with the molecular long axis parallel to the direction of light speed, when less than perpendicular to the speed of the molecular long axis direction, which means that parallel the molecular long axis direction of refractive index is greater than the vertical direction of the refractive index (because the refractive index is inversely proportional to the speed of light), is the one – no > 0. So the birefringence Δ n > 0, we think that it is called optics is a type of LCD, and lamellar liquid crystal and LCD are all belong to the optical is almost linear LCD. If the light of the parallel to the direction of the long axis was faster, On behalf of the flat to the governor of the axis of the refractive index is less than the vertical direction, so the birefringence Δ n < 0. We call it is the optical negative type of LCD. The cholesterol liquid crystal optical negative type of LCD.

For example, the elastic constant (kappa 11, kappa 22, kappa 33) contains the three most important constants: kappa 11 is the elastic constant at splay, kappa 22 is the elastic constant at the twist. Kappa 33 refers to predominating the elastic constants of bending (bend). The other as the coefficient of viscosity (viscosity coefficients and eta), will affect the rotational speed of the liquid crystal molecules with reaction time (response time), its value as small as possible. But this feature is affected by temperature is the largest. In addition to magnetic susceptibility (magnetic susceptibility), but also because of liquid crystals of different sex, Divided into c / / c coming. And the difference of magnetic susceptibility is defined as Δ c = c / / – c coming. In addition to the conductance coefficient (conductivity), and so on the photoelectric properties. Liquid crystal properties of the most important are the dielectric coefficient and refractive index of liquid crystal. The dielectric coefficient is determined liquid crystal under the influence of the electric field to the characteristics of the liquid crystal molecules, while the refractive index is liquid crystal in the light of its important parameters influencing the light path. The LCD is in using the liquid crystal itself of these features, the appropriate use of voltage, to control the rotation of the TFT LCD molecules, in turn, affect the direction of