<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>LCD Journals</title>
	<atom:link href="http://focuslcd.com/journals/feed/" rel="self" type="application/rss+xml" />
	<link>http://focuslcd.com/journals</link>
	<description></description>
	<lastBuildDate>Fri, 03 Sep 2010 19:43:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A short course on LCD controller Drivers</title>
		<link>http://focuslcd.com/journals/2010/09/a-short-course-on-lcd-controller-drivers/</link>
		<comments>http://focuslcd.com/journals/2010/09/a-short-course-on-lcd-controller-drivers/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 19:27:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Displays]]></category>
		<category><![CDATA[character LCD]]></category>
		<category><![CDATA[Controller Driver]]></category>
		<category><![CDATA[Epson]]></category>
		<category><![CDATA[graphic lcd]]></category>
		<category><![CDATA[IC]]></category>
		<category><![CDATA[integrated circuit]]></category>
		<category><![CDATA[Sitronix]]></category>
		<category><![CDATA[Sunplus]]></category>

		<guid isPermaLink="false">http://focuslcd.com/journals/?p=98</guid>
		<description><![CDATA[Character and Graphic LCD’s are supplied with an on-board Controller Driver. This is sometimes referred to as an IC (integrated circuit).
There are different manufactures of Controller Drivers such as Sitronix, Epson and Sunplus.
The Controller/Driver has three main functions.
1. RAM 

This is the memory built into the controller driver that helps to drive the LCD.

2. Character [...]]]></description>
			<content:encoded><![CDATA[<p>Character and Graphic LCD’s are supplied with an on-board Controller Driver. This is sometimes referred to as an IC (integrated circuit).</p>
<p>There are different manufactures of Controller Drivers such as <a title="Sitronix Controller" href="http://focuslcd.com/pdfs/ST7066.pdf" target="_blank">Sitronix</a>, <a title="Epson Controller" href="http://vdc.epson.com/index.php?option=com_docman&amp;task=cat_view&amp;gid=291&amp;Itemid=40" target="_blank">Epson</a> and <a title="Sunplus Controller" href="http://focuslcd.com/pdfs/SPLC780D_DS.pdf" target="_blank">Sunplus</a>.</p>
<h3>The Controller/Driver has three main functions.</h3>
<p><strong>1. RAM </strong></p>
<ul>
<li>This is the memory built into the controller driver that helps to drive the LCD.</li>
</ul>
<p><strong>2. Character Generator </strong></p>
<ul>
<li>This is a library that converts the customer’s data to letters, numbers and Punctuation marks.</li>
<li>The character generator is different for each language.</li>
<li>The SPLC7066U controller driver can supply up to 240 character fonts.</li>
</ul>
<p><strong>3. Liquid Crystal Driver </strong></p>
<ul>
<li>This drives each segment (dot)</li>
</ul>
<p>The Sitronix C/D ST7066U has the ability to drive 640 segments. If you need to drive more than 640 segments, then you will need to add on an additional ‘segment driver’. The Sitronix version of the segment driver is the ST7063C and ST7065.</p>
<h3>What is a segment?</h3>
<p>A 16&#215;1 character display can display one row of 16 characters. Each one of these ‘16’ characters is made up of ‘dots’ or segments. Each of these characters can be 5&#215;8 (5 dots along the horizontal and 8 dots up and down). There are also characters that have 5&#215;11 dots and 10&#215;10 dots.</p>
<p>Below is a drawing of a 16&#215;1 Character display that has a 5&#215;8 character size.</p>
<p><a href="http://focuslcd.com/journals/wp-content/uploads/2010/09/CharacterDisplay.jpg"></a><a href="http://focuslcd.com/journals/wp-content/uploads/2010/09/CharacterDisplay.jpg"></a></p>
<p><a href="http://focuslcd.com/journals/wp-content/uploads/2010/09/CharacterDisplay2.jpg"><img class="aligncenter size-medium wp-image-105" title="Character Display" src="http://focuslcd.com/journals/wp-content/uploads/2010/09/CharacterDisplay2-300x157.jpg" alt="Character Display" width="300" height="157" /></a></p>
<p>Each of the 5&#215;8 character has 40 dots or segments (5 x 8 =40). Therefore a 16&#215;1 character display has 16 characters with each character having 40 dots. This means that the 16&#215;1 display has (16 [characters] x 40 [dots]) = 640 dots or segments.</p>
<p>One controller driver can handle all the functions of 640 segments. This is equivalent to a 16&#215;1 character display, an 8&#215;2 LCD or 8&#215;1 Character display.</p>
<p>If you need a larger display such as a 16&#215;2 or 20&#215;2 you would add a segment driver such as the ST7063C. There is no need for another controller. Each display only needs one controller but can contain many additional segment drivers.</p>
<p>The segment driver does not have the ability to supply RAM and the character generator. The sole purpose of the segment driver is to drive the segments.</p>
<p>Below is a break down of how many controller drivers and segment drivers are needed for a character display. This is for monochrome LCD modules.</p>
<p>A 16&#215;1 requires one ST7066.<br />
A 16&#215;2 requires one ST7066 and one ST7065 (segment driver)<br />
A 20&#215;2 requires one ST7066 and one ST7063 (segment driver)<br />
A 16&#215;4 requires one ST7066 and two ST7063 and one ST7065<br />
A 20&#215;4 requires one ST7066 and two ST7063’s.<br />
A 40&#215;2 requires one ST7066 and two ST7063’s.<br />
A 40&#215;4 requires one ST7066 and four ST7063’s.</p>
<p>The Focus Display standard offering of Alphanumeric and Numeric LCD Displays includes:<br />
8 x 1 LCD Display, 8 x 2 LCD Display, 16 x 1 LCD Display, 16 x 2 LCD Display, 16 x 4 LCD Display, 20 x 2 LCD Display, 20 x 4 LCD Display, 24 x 2 LCD Display, 40 x 1 LCD Display, 40 x 2 LCD Display, 40 x 4 LCD Display,</p>
<p>Static displays, also called segment LCD or glass liquid crystal displays do not come with an on-board Controller Driver. The customer needs to supply the segment driver on their product.</p>
<p>The Focus Display standard offering of LCD modules includes:<br />
LCD segment display, 7(seven) segment LCD display, 14(fourteen) segment LCD display, and 16 (sixteen) segment LCD displays.</p>
]]></content:encoded>
			<wfw:commentRss>http://focuslcd.com/journals/2010/09/a-short-course-on-lcd-controller-drivers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Discontinued LCD Controller Drivers</title>
		<link>http://focuslcd.com/journals/2010/08/discontinued-lcd-controller-drivers/</link>
		<comments>http://focuslcd.com/journals/2010/08/discontinued-lcd-controller-drivers/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 15:32:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Displays]]></category>
		<category><![CDATA[Alphanumeric (Character) LCD Displays]]></category>
		<category><![CDATA[Controller Driver]]></category>
		<category><![CDATA[liquid crystal displays]]></category>
		<category><![CDATA[monochrome LCD module]]></category>
		<category><![CDATA[Sitronix]]></category>
		<category><![CDATA[Sunplus]]></category>

		<guid isPermaLink="false">http://focuslcd.com/journals/?p=95</guid>
		<description><![CDATA[It seems that every two years the controller driver used on Liquid Crystal Displays is discontinued and replaced by another manufacturer. The challenge to this is that the word ‘equivalent’ is not the same as ‘100% exact, drop-in match’
When the supplier of a Controller Driver discontinues their current product, the monochrome LCD module manufactures are [...]]]></description>
			<content:encoded><![CDATA[<p>It seems that every two years the controller driver used on Liquid Crystal Displays is discontinued and replaced by another manufacturer. The challenge to this is that the word ‘equivalent’ is not the same as ‘100% exact, drop-in match’</p>
<p>When the supplier of a Controller Driver discontinues their current product, the monochrome LCD module manufactures are forced to switch to an equivalent. When this happens we highly suggest the customer test a sample of the new controller/driver before ordering production quantities. Our estimate is that a customer can swap between different controller drivers 99% of the time without having to modify or change their firmware. However, there is a 1% failure rate.</p>
<p>Some Controller Driver manufactures include Sunplus, Sitronix, Samsung, and Epson.</p>
<p>At the current time we use the <a title="SPLC780D" href="http://www.focuslcd.com/pdfs/SPLC780D_DS.pdf" target="_self">SPLC780D</a> (Sunplus) or the <a title="ST7066" href="http://www.focuslcd.com/pdfs/ST7066.pdf" target="_self">ST7066</a> (Sitronix) controller driver on all our Alphanumeric (Character) LCD Displays.</p>
<p>Our Standard list of Character displays includes 8 x 1 LCD Display, 8 x 2 LCD Display, 16 x 1 LCD Display, 16 x 2 LCD Display, 16 x 4 LCD Display, 20 x 2 LCD Display, 20 x 4 LCD Display, 24 x 2 LCD Display, 40 x 1 LCD Display, 40 x 2 LCD Display, 40 x 4 LCD Display,</p>
<p>Static displays do not come with the controller driver on board. The customer supplies the driver on their printed circuit board. Our Standard list of segment displays (glass liquid crystal displays) include 7(seven) segment LCD display, 14(fourteen) segment LCD display, and 16 (sixteen) segment LCD displays.</p>
<p>The majority of our LCD modules have the options of TN, STN, and FSTN. Backlight options include EL and LED (transflective and transmissive).</p>
]]></content:encoded>
			<wfw:commentRss>http://focuslcd.com/journals/2010/08/discontinued-lcd-controller-drivers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using a Heater to operate an LCD in a cold temperature</title>
		<link>http://focuslcd.com/journals/2010/08/using-a-heater-to-operate-an-lcd-in-a-cold-temperature/</link>
		<comments>http://focuslcd.com/journals/2010/08/using-a-heater-to-operate-an-lcd-in-a-cold-temperature/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 20:38:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Displays]]></category>
		<category><![CDATA[Response Time]]></category>
		<category><![CDATA[Alphanumeric]]></category>
		<category><![CDATA[custom lcd display]]></category>
		<category><![CDATA[LCD Display Engineering]]></category>
		<category><![CDATA[LCD module heaters]]></category>
		<category><![CDATA[LCD modules]]></category>
		<category><![CDATA[Liquid crystal display]]></category>
		<category><![CDATA[numeric LCD displays]]></category>
		<category><![CDATA[Replacement LCD modules]]></category>

		<guid isPermaLink="false">http://focuslcd.com/journals/?p=93</guid>
		<description><![CDATA[As LCD modules become colder, the fluid reaches a freezing point. The colder the LCD display module becomes the slower the response time.
TN LCD’s will operate to -30 C. STN LCD’s will operate to -20 C. At this temperature it may require 5 seconds or more for the display to respond.
To improve (reduce) response time [...]]]></description>
			<content:encoded><![CDATA[<p>As LCD modules become colder, the fluid reaches a freezing point. The colder the LCD display module becomes the slower the response time.</p>
<p>TN LCD’s will operate to -30 C. STN LCD’s will operate to -20 C. At this temperature it may require 5 seconds or more for the display to respond.</p>
<p>To improve (reduce) response time of a liquid crystal display it may become necessary to add a heater.</p>
<p>Focus Displays does not carry LCD module heaters. One source is <a title="Conflux" href="http://www.conflux.se/index.html" target="_blank">http://www.conflux.se/index.html</a></p>
<p>All Focus Display monochrome LCD modules can be purchased in TN, STN or FSTN.</p>
<p>We carry sample stock on many popular size<a title="Character Displays" href="http://focuslcd.com/character.php" target="_blank"> Character displays</a>. This includes 8 x 1 LCD Display, 8 x 2 LCD Display, 16 x 1 LCD Display, 16 x 2 LCD Display, 16 x 4 LCD Display, 20 x 2 LCD Display, 20 x 4 LCD Display, 24 x 2 LCD Display, 40 x 1 LCD Display, 40 x 2 LCD Display, 40 x 4 LCD Display,</p>
<p>We carry sample inventory on Static or <a title="Static Displays" href="http://focuslcd.com/static.php" target="_blank">glass displays</a>. This is for any number of segments including led segment display, 7 segment LCD display, 7 segment displays, 14 segment LCD display, 16 segment LCD displays.</p>
<p>We offer Alphanumeric and Numeric LCD Displays to help you find replacement LCD modules for manufactures that have discontinued production.</p>
<p>Custom LCD Display Design and Engineering is available for custom LCD displays.</p>
]]></content:encoded>
			<wfw:commentRss>http://focuslcd.com/journals/2010/08/using-a-heater-to-operate-an-lcd-in-a-cold-temperature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What does the labor shortage have to do with M.O.Q.?</title>
		<link>http://focuslcd.com/journals/2010/08/what-does-the-labor-shortage-have-to-do-with-m-o-q/</link>
		<comments>http://focuslcd.com/journals/2010/08/what-does-the-labor-shortage-have-to-do-with-m-o-q/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 19:33:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Discontinued]]></category>
		<category><![CDATA[Displays]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[Pricing]]></category>
		<category><![CDATA[14 (fourteen) segment LCD display]]></category>
		<category><![CDATA[16 (sixteen) segment LCD display]]></category>
		<category><![CDATA[7 (seven) segment LCD display]]></category>
		<category><![CDATA[Alphanumeric LCD displays]]></category>
		<category><![CDATA[Character displays]]></category>
		<category><![CDATA[custom LCD]]></category>
		<category><![CDATA[Discontinued LCD]]></category>
		<category><![CDATA[labor shortage]]></category>
		<category><![CDATA[Liquid crystal display]]></category>
		<category><![CDATA[MOQ]]></category>
		<category><![CDATA[numeric LCD displays]]></category>
		<category><![CDATA[replacement LCD]]></category>
		<category><![CDATA[segment displays]]></category>
		<category><![CDATA[static displays]]></category>

		<guid isPermaLink="false">http://focuslcd.com/journals/2010/08/what-does-the-labor-shortage-have-to-do-with-m-o-q/</guid>
		<description><![CDATA[The labor shortage at the liquid crystal display factories is causing the factories to increase their MOQ. MOQ is short for Minimum Order Quantity; this is the minimum amount of LCD products that can be ordered at one time.
A service we offer to our customers is to order the MOQ for you and then spread [...]]]></description>
			<content:encoded><![CDATA[<p>The labor shortage at the liquid crystal display factories is causing the factories to increase their MOQ. MOQ is short for Minimum Order Quantity; this is the minimum amount of LCD products that can be ordered at one time.</p>
<p>A service we offer to our customers is to order the MOQ for you and then spread out your deliveries over a 12 month period. One advantage of this is that we can bring in your displays early and then ship them out to you on your schedule.</p>
<p><a title="Character LCD" href="http://focuslcd.com/character.php" target="_blank">Character LCD</a>:<br />
Character displays are also known as alphanumeric LCD displays or numeric LCD displays. These are the more standard type of an LCD display module. As a general rule the character display manufacturers ask for 500 liquid crystal displays per order.</p>
<p>These include 8 x 1 LCD Display, 8 x 2 LCD Display, 16 x 1 LCD Display, 16 x 2 LCD Display, 16 x 4 LCD Display, 20 x 2 LCD Display, 20 x 4 LCD Display, 24 x 2 LCD Display, 40 x 1 LCD Display, 40 x 2 LCD Display, 40 x 4 LCD</p>
<p><a title="Graphic LCD" href="http://focuslcd.com/graphic.php" target="_blank">Graphic LCD</a>:<br />
Graphic displays are also known as monochrome LCD displays. As a general rule the graphic display manufacturers request a 500 MOQ. These include FSTN, STN and TN. The MOQ is the same for no backlight as it is for LED backlight and EL backlight.</p>
<p><a title="Custom LCD" href="http://focuslcd.com/design.php" target="_blank">Custom LCD</a>:<br />
It is not uncommon to have a large minimum order for a custom LCD display module that is a replacement LCD display or to replace a discontinued LCD monochrome display.</p>
<p><a title="Static LCD" href="http://focuslcd.com/static.php" target="_blank">Segment LCD</a>:<br />
Segment displays are also known as static displays or glass displays. At this time the MOQ for most static/segment displays is 2,500. The factory will build as few as 1,000 at a time, but the LCD cost per display will increase.</p>
<p>These include all types of segment displays such as 7 (seven) segment LCD display, 14 (fourteen) segment LCD display, 16 (sixteen) segment LCD display</p>
]]></content:encoded>
			<wfw:commentRss>http://focuslcd.com/journals/2010/08/what-does-the-labor-shortage-have-to-do-with-m-o-q/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What happens to LCD’s when they become cold?</title>
		<link>http://focuslcd.com/journals/2010/08/what-happens-to-lcd%e2%80%99s-when-they-become-cold/</link>
		<comments>http://focuslcd.com/journals/2010/08/what-happens-to-lcd%e2%80%99s-when-they-become-cold/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 21:34:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Displays]]></category>
		<category><![CDATA[Response Time]]></category>
		<category><![CDATA[14 (fourteen) segment]]></category>
		<category><![CDATA[16 (sixteen) segment]]></category>
		<category><![CDATA[7 (seven) segment]]></category>
		<category><![CDATA[Alphanumeric LCD displays]]></category>
		<category><![CDATA[character display]]></category>
		<category><![CDATA[Character LCD’s]]></category>
		<category><![CDATA[lcd]]></category>
		<category><![CDATA[liquid crystal displays]]></category>
		<category><![CDATA[Segment Display]]></category>

		<guid isPermaLink="false">http://focuslcd.com/journals/?p=79</guid>
		<description><![CDATA[

What happens to LCD’s when they become cold?
Liquid crystal displays are just like their name&#8230; they contain a liquid between two layers of glass. Liquids begin to freeze as the temperature drops. As the display freezes their response time slows down. In other words, it takes longer for the numbers and letters on the display [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://focuslcd.com/journals/wp-content/uploads/2010/08/ResponseTimeGraph.bmp"></a></p>
<p><a href="http://focuslcd.com/journals/wp-content/uploads/2010/08/ResponseTime.bmp"><img class="aligncenter size-full wp-image-87" title="ResponseTime" src="http://focuslcd.com/journals/wp-content/uploads/2010/08/ResponseTime.bmp" alt="Response Time Graph" width="603" height="257" /></a></p>
<p>What happens to LCD’s when they become cold?</p>
<p>Liquid crystal displays are just like their name&#8230; they contain a liquid between two layers of glass. Liquids begin to freeze as the temperature drops. As the display freezes their response time slows down. In other words, it takes longer for the numbers and letters on the display to change (Turn ON or Turn OFF).</p>
<p>Above is a graph showing the response time of a display at -30°C (-22°F).</p>
<p>The best way I can think to explain this is a ceiling fan. When you turn off the ceiling fan the blades continue to turn for a few minutes, even though the power if OFF. When you turn ON a ceiling fan the blades will be at full speed in a shorter period of time. At most the blades will be at their max speed within 30 seconds. When talking about an LCD, we talk about when the display is ON (the characters can be seen) or OFF (the characters cannot be seen).</p>
<p>On the graph above there are two measurements. The left side is how dark the letters are; the larger the number the darker the letter. Along the bottom of the graph is the amount of time it takes to go from ON to OFF, or to go from OFF to ON. (Note: 1000mS is the same as 1 second).</p>
<p>Line ‘A’ displays the amount of time it takes for a character or segment on the display to turn OFF. That is, once you turn OFF the segment, how long does it take before it disappears? The graph above shows that the character actually ‘disappears’ 3500 milliseconds (3.5 seconds) after the display is turned OFF.</p>
<p>Line ‘B’ displays the amount of time it takes for the character or segment to turn ON. In the above graph the segment is only 55% ‘ON’ at 8000 milliseconds (8 seconds). That means the character is only ½ (half) ON. It will look grey and not very dark. It requires more time for the display to turn ON than to turn OFF… just the opposite of a ceiling fan.</p>
<p>We do not recommend operating our wide temperature (extended temperature) displays below -20°C (-4°F). This is true for all segment displays (static displays or glass displays), 7 (seven) segment, 14 (fourteen) segment and 16 (sixteen) segment LCD’s.</p>
<p>Alphanumeric LCD displays such as: 8&#215;1 LCD Display, 8&#215;2 LCD Display, 16&#215;1 LCD Display, 16&#215;2 LCD Display, 16&#215;4 LCD Display, 20&#215;2 LCD Display, 20&#215;4 LCD Display, 24&#215;2 LCD Display, 40&#215;1 LCD Display, 40&#215;2 LCD Display, 40&#215;4 LCD Display will react the same way.</p>
]]></content:encoded>
			<wfw:commentRss>http://focuslcd.com/journals/2010/08/what-happens-to-lcd%e2%80%99s-when-they-become-cold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is all the fuss about FOB?</title>
		<link>http://focuslcd.com/journals/2010/07/what-is-all-the-fuss-about-fob/</link>
		<comments>http://focuslcd.com/journals/2010/07/what-is-all-the-fuss-about-fob/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 11:31:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Displays]]></category>
		<category><![CDATA[14 segment]]></category>
		<category><![CDATA[16x1 LCD display]]></category>
		<category><![CDATA[16x2 LCD display]]></category>
		<category><![CDATA[16x4 LCD display]]></category>
		<category><![CDATA[20x2 LCD display]]></category>
		<category><![CDATA[20x4 LCD display]]></category>
		<category><![CDATA[24x2 LCD display]]></category>
		<category><![CDATA[40x1 LCD display]]></category>
		<category><![CDATA[40x2 LCD display]]></category>
		<category><![CDATA[40x4 LCD display]]></category>
		<category><![CDATA[7 segment]]></category>
		<category><![CDATA[8x1 LCD display]]></category>
		<category><![CDATA[8x2 LCD display]]></category>
		<category><![CDATA[alphanumeric LCD]]></category>
		<category><![CDATA[Character]]></category>
		<category><![CDATA[display module]]></category>
		<category><![CDATA[glass displays]]></category>
		<category><![CDATA[lcd]]></category>
		<category><![CDATA[liquid crystal displays]]></category>
		<category><![CDATA[segment displays]]></category>
		<category><![CDATA[Static]]></category>
		<category><![CDATA[TFT]]></category>

		<guid isPermaLink="false">http://focuslcd.com/journals/?p=75</guid>
		<description><![CDATA[FOB is short for Free On Board or Freight On Board. In other words, who pays the freight from the factory to you?
We offer three options.

F.O.B Origin: This term means that the customer is responsible for the international and domestic shipping on the product from the origin (China, Taiwan or some other origination point) to [...]]]></description>
			<content:encoded><![CDATA[<p>FOB is short for <strong>Free On Board</strong> or <strong>Freight On Board</strong>. In other words, who pays the freight from the factory to you?</p>
<p>We offer three options.</p>
<ol>
<li><strong>F.O.B Origin:</strong> This term means that the customer is responsible for the international and domestic shipping on the product from the origin (China, Taiwan or some other origination point) to their dock.</li>
<li><strong>F.O.B Ship point:</strong> This means that the customer is responsible for the shipping from our (Focus) warehouse in Mesa, AZ to their dock.</li>
<li><strong>F.O.B Destination:</strong> This means that Focus is responsible for all shipping costs from the manufacturer to the end customer’s dock.</li>
</ol>
<p>So what is the best option?  At Focus Display Solutions we recommend option 2, FOB ship point. This allows the customer to ship from AZ to their location on either their UPS, Fed Ex account or on the focus UPS account.</p>
<p>Our character and static LCD display modules are not as large as TFT liquid crystal displays.</p>
<p>Segment displays (static displays or glass displays), 7 (seven) segment, 14 (fourteen) segment and 16 (sixteen) segments are smaller and less expensive to ship then Alphanumeric LCD displays (aka: Character LCD’s).</p>
<p>The smaller character displays such as 8&#215;1 LCD display, 8&#215;2 LCD display, 16&#215;1 LCD display, 16&#215;2 LCD display, 16&#215;4 LCD display are less expensive to ship than the 20&#215;2 LCD display, 20&#215;4 LCD display, 24&#215;2 LCD display, 40&#215;1 LCD display, 40&#215;2 LCD display, 40&#215;4 LCD display.</p>
]]></content:encoded>
			<wfw:commentRss>http://focuslcd.com/journals/2010/07/what-is-all-the-fuss-about-fob/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The drive to have less</title>
		<link>http://focuslcd.com/journals/2010/07/the-drive-to-have-less/</link>
		<comments>http://focuslcd.com/journals/2010/07/the-drive-to-have-less/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 17:55:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Displays]]></category>
		<category><![CDATA[Character]]></category>
		<category><![CDATA[Graphic]]></category>
		<category><![CDATA[International Energy Agency (IEA)]]></category>
		<category><![CDATA[LCD displays]]></category>
		<category><![CDATA[onewatt initiative]]></category>
		<category><![CDATA[RoHS]]></category>
		<category><![CDATA[Segment]]></category>
		<category><![CDATA[Static]]></category>

		<guid isPermaLink="false">http://focuslcd.com/journals/?p=72</guid>
		<description><![CDATA[The current economy has driven business to do more with less. This is very true in the electronics industry.
We are constantly driven to manufacture Character, Graphic and Static (Segment) LCD Displays that take up less room and meets RoHS standards in a shorter amount of time.
The push to design products to use less power is [...]]]></description>
			<content:encoded><![CDATA[<p>The current economy has driven business to do more with less. This is very true in the electronics industry.</p>
<p>We are constantly driven to manufacture Character, Graphic and Static (Segment) LCD Displays that take up less room and meets RoHS standards in a shorter amount of time.</p>
<p>The push to design products to use less power is not new. The International Energy Agency (IEA) is pushing to have the US meet new power saving requirements. The goal is to minimize the amount of power necessary when a product such as a cell phone is in ‘sleep mode’. See <a title="One-watt initiative" href="http://www.acoel.org/2009/02/articles/energy/climate/united-states-needs-to-get-on-board-in-2009-with-the-onewatt-initiative/" target="_blank">http://www.acoel.org/2009/02/articles/energy/climate/united-states-needs-to-get-on-board-in-2009-with-the-onewatt-initiative/</a></p>
<p>At Focus Display Solutions we are expanding our Character and Static LCD display modules to operate at 3.3V instead of the standard 5V. This is true for both our custom (engineered and designed) LCD display and standard LCD monochrome display.</p>
<p>Every Segment Display, 7 (seven) segment, 14 (fourteen) segment and 16 (sixteen) segment has the option of both 3.3 volt and 4.7 volt. All three options of segment displays (STN, TN and FSTN) are available. See <a title="Static Displays" href="http://focuslcd.com/static.php" target="_self">http://focuslcd.com/static.php</a> for more details.</p>
<p>We also offer Alphanumeric LCD displays, also known as Character LCD’s, in both 4.7 volt and 3.3 volt. The most common of these are 8 x 1 LCD Display, 8 x 2 LCD Display, 16 x 1 LCD Display, 16 x 2 LCD Display, 16 x 4 LCD Display, 20 x 2 LCD Display, 20 x 4 LCD Display, 24 x 2 LCD Display, 40 x 1 LCD Display, 40 x 2 LCD Display, 40 x 4 LCD Display,</p>
<p>All of our Numeric LCD Displays are monochrome.</p>
]]></content:encoded>
			<wfw:commentRss>http://focuslcd.com/journals/2010/07/the-drive-to-have-less/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safety Stock in Inventory</title>
		<link>http://focuslcd.com/journals/2010/07/safety-stock-in-inventory/</link>
		<comments>http://focuslcd.com/journals/2010/07/safety-stock-in-inventory/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 17:27:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Displays]]></category>
		<category><![CDATA[Inventory]]></category>
		<category><![CDATA[14(fourteen) segment]]></category>
		<category><![CDATA[16x1]]></category>
		<category><![CDATA[16x2]]></category>
		<category><![CDATA[20x2]]></category>
		<category><![CDATA[20x4]]></category>
		<category><![CDATA[7 (seven) segment]]></category>
		<category><![CDATA[8x1]]></category>
		<category><![CDATA[8x2]]></category>
		<category><![CDATA[alphanumeric LCD]]></category>
		<category><![CDATA[and 16(sixteen) segment]]></category>
		<category><![CDATA[CCFL backlights]]></category>
		<category><![CDATA[character LCD]]></category>
		<category><![CDATA[EL backlights]]></category>
		<category><![CDATA[FSTN]]></category>
		<category><![CDATA[LCD displays]]></category>
		<category><![CDATA[LCD suppliers]]></category>
		<category><![CDATA[monochrome displays]]></category>
		<category><![CDATA[OEM]]></category>
		<category><![CDATA[static displays]]></category>
		<category><![CDATA[STN]]></category>
		<category><![CDATA[TN character LCD]]></category>

		<guid isPermaLink="false">http://focuslcd.com/journals/2010/07/safety-stock-in-inventory/</guid>
		<description><![CDATA[Is safety stock back in style?
Many suppliers do not want to carry excess inventory. It was not good business sense to tie up your cash and hope someone will come along and purchase your product. But this is changing.
The style is changing. Why?

Lead times on segment displays, character and alphanumeric LCD’s have increased in the [...]]]></description>
			<content:encoded><![CDATA[<p>Is safety stock back in style?</p>
<p>Many suppliers do not want to carry excess inventory. It was not good business sense to tie up your cash and hope someone will come along and purchase your product. But this is changing.</p>
<p>The style is changing. Why?</p>
<ol>
<li>Lead times on segment displays, character and alphanumeric LCD’s have increased in the last few months. Customers (OEM’s) need inventory in a week or two, not 12 to 16 weeks after they place their purchase order.</li>
<li>Many LCD suppliers are discontinuing their LCD displays. This is true for 16&#215;1, 16&#215;2, 20&#215;2, 8&#215;1, 8&#215;2, 20&#215;4 LCD displays. We receive calls for CCFL and EL backlights often. There is still a demand for 7 (seven) segment, 14(fourteen) segment, and 16(sixteen) segment static displays. It seems that many suppliers are scaling back on monochrome displays.</li>
<li>Earning interest on cash in the bank is at an all time low.</li>
</ol>
<p>Please call us if you need a replacement STN, FSTN or TN character LCD.</p>
]]></content:encoded>
			<wfw:commentRss>http://focuslcd.com/journals/2010/07/safety-stock-in-inventory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everything You Wanted to Know about Custom LCD Design but were Afraid to Ask</title>
		<link>http://focuslcd.com/journals/2010/07/everything-you-wanted-to-know-about-custom-lcd-design-but-were-afraid-to-ask/</link>
		<comments>http://focuslcd.com/journals/2010/07/everything-you-wanted-to-know-about-custom-lcd-design-but-were-afraid-to-ask/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 03:08:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Displays]]></category>
		<category><![CDATA[character LCD]]></category>
		<category><![CDATA[custom LCD]]></category>
		<category><![CDATA[glass displays]]></category>
		<category><![CDATA[Liquid crystal display]]></category>
		<category><![CDATA[segment displays]]></category>

		<guid isPermaLink="false">http://focuslcd.com/journals/?p=55</guid>
		<description><![CDATA[Well, maybe this is not the best title, but there are a few basics that are good to know before you move ahead on a custom LCD display.  This is true for all static, segment or glass displays such as 7 (seven), 14 (fourteen) and 16 (sixteen) segment displays. This is also true for all [...]]]></description>
			<content:encoded><![CDATA[<p>Well, maybe this is not the best title, but there are a few basics that are good to know before you move ahead on a custom LCD display.  This is true for all static, segment or glass displays such as 7 (seven), 14 (fourteen) and 16 (sixteen) segment displays. This is also true for all Character / numeric LCD modules.</p>
<p>Our goal is to recommend a standard display whenever possible; not a custom Liquid crystal display.  If this will not work, we are able to suggest alternatives.  Sometimes the customer needs a custom LCD with tooling to replace a module that has been discontinued.  Below are a few guidelines.</p>
<ol>
<li>If the customer pays for the tooling/ engineering (NRE), then the customer owns that LCD display. module In other words we cannot sell that display to any other customer without the permission of that customer.</li>
<li>When the customer has approved the drawing of the display, we will then request samples. As a general rule, when the customer pays for the LCD tooling, we supply 5 samples at no cost.</li>
<li>The cost of freight to bring in the custom lcd module samples is included in the tooling cost. This is for the first shipment only.</li>
<li>The tooling fees for static, glass or segment displays are lower then for a character LCD module (alphanumeric LCD display module).</li>
<li>The use of TN, STN or FSTN does not affect the tooling fee for the custom display, but this will affect the unit cost.</li>
</ol>
<p>Here is a <span style="text-decoration: underline;"><a title="Tooling Diagram" href="http://focuslcd.com/content/ToolingDiagram.jpg" target="_self">link</a></span> showing the process for a custom display.</p>
]]></content:encoded>
			<wfw:commentRss>http://focuslcd.com/journals/2010/07/everything-you-wanted-to-know-about-custom-lcd-design-but-were-afraid-to-ask/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Have you been Factory swapped?</title>
		<link>http://focuslcd.com/journals/2010/06/have-you-been-factory-swapped/</link>
		<comments>http://focuslcd.com/journals/2010/06/have-you-been-factory-swapped/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 00:56:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Displays]]></category>
		<category><![CDATA[Pricing]]></category>
		<category><![CDATA[character lcd module]]></category>
		<category><![CDATA[custom lcd display]]></category>
		<category><![CDATA[FSTN]]></category>
		<category><![CDATA[graphic lcd]]></category>
		<category><![CDATA[lcd display module]]></category>
		<category><![CDATA[monochrome lcd]]></category>
		<category><![CDATA[numeric displays]]></category>
		<category><![CDATA[Segment Display]]></category>
		<category><![CDATA[STN]]></category>
		<category><![CDATA[TN]]></category>

		<guid isPermaLink="false">http://focuslcd.com/journals/2010/06/have-you-been-factory-swapped/</guid>
		<description><![CDATA[The more you order, the lower your cost. This has always been true. The cost of 10K liquid crystal displays (lcd display modules) would be 5% or 7% less expensive than if you ordered 100 displays. This is also true for custom STN displays, FSTN displays and TN numeric displays. But lately we have seen [...]]]></description>
			<content:encoded><![CDATA[<p>The more you order, the lower your cost. This has always been true. The cost of 10K liquid crystal displays (lcd display modules) would be 5% or 7% less expensive than if you ordered 100 displays. This is also true for custom STN displays, FSTN displays and TN numeric displays. But lately we have seen some suppliers offer a price break by as much as 30% to 40%.</p>
<p>One example of this is when one supplier dropped the price by 35% when the customer increased the quantity from 10K to 50K displays. As it turned out the supplier quoted the 10K units to be manufactured in China and the 50K quantity to be manufactured in Cambodia.</p>
<p>A supplier could send you a sample from a factory in one country and then ship you samples from a different factory. This could cause problems later if there are any differences between the sample and production lcd module units.</p>
<p>The next time you receive a quote with a very large price break in character LCD modules, segment displays, and monochrome graphic LCD’s, make sure that the units will be produced by the same manufacture as the sample you receive.</p>
]]></content:encoded>
			<wfw:commentRss>http://focuslcd.com/journals/2010/06/have-you-been-factory-swapped/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
