SLCD1-IC Serial LCD Processor

Size: px
Start display at page:

Download "SLCD1-IC Serial LCD Processor"

Transcription

1 SLCD1-IC Serial LCD Processor Diagram 1: LCD Pin 13 LCD Pin LCD Pin 12 LCD Pin 11 N/C MHz Osc DC MHz Osc Ground 5 14 DC Serial Input True/Inverted LCD Pin 6 LCD Pin 4 Baud Rate (See Table 2) 8 11 LCD Pin 2 LCD B/L 9 10 Baud Rate (See Table 2) Introduction: The SLCD1-IC is an LCD interface processor that accepts standard Serial data as input and sends that data to a character LCD via 4-bit parallel bus. The SLCD1-IC is housed in a standard.3 wide, 18 pin microprocessor package. The purpose of the SLCD1-IC is to allow the user to communicate with a character LCD via one I/O pin. It is intended for use with character LCD s with one to four lines, which use the extremely popular Hitachi HD44780 controller or equivalent. The Serial transmission is 8N1 (8 data bits, no parity, 1 stop bit). True/Inverted Modes: The SLCD1-IC does not include an RS-232 voltage level converter. This assumes that the input voltage on pin 6 (Serial Input) is TTL levels, which are 0V to. However, due to the excellent I/O capabilities of the PIC16F628A (which is the microprocessor that is used to create the SLCD1-IC), the SLCD1-IC can usually interface to a PC (RS-232 voltage levels) by setting pin 7 to 0V (Inverted). In summary, here are the three basic situations concerning the True/Inverted modes. 1. Connecting SLCD1-IC to a device producing TTL voltage levels: Select the appropriate baud rate. Next, you can use either True or Inverted mode. Each will work fine. 2. Connecting SLCD1-IC to a PC or some other RS-232 voltage level device for RS-232- compatibility: Select the appropriate baud rate. Next, set to Inverted mode. This will usually allow for proper communications. However, certain Serial ports on PC may not sense the signal. However, it should be noted that this will not damage the PC Serial port or the SLCD1-IC, as long as the 22K ohm resistor is used, as shown in Diagram Connecting the SLCD1-IC to a PC or some other RS-232 voltage level device for RS-232- compliance: Select the appropriate baud rate. Next, set to True mode. Finally, an RS-232 voltage level IC, such as Maxim IC s ( MAX232 should be used to send the input signal into pin 6 of the SLCD1-IC. This will guarantee that the SLCD1-IC will always work with any RS-232 device. Note: We plan on releasing an RS-232-compliant Serial LCD controller in the future. Therefore, if it is necessary for you to have RS-232-compliance, please contact us for the status of the appropriate part.

2 Pin Assignments: Table 2 shows the pin assignments for the SLCD1-IC. Pin 1: Pin 13 of the LCD. This is one of the four data lines that must be connected from the SLCD1-IC to the LCD. Pin 2: Pin 14 of the LCD. This is one of the four data lines that must be connected from the SLCD1-IC to the LCD. Pin 3: Not Connected Pin 4: This pin should be pulled up to with a 4.7K ohm resistor. It is the reset pin for the SLCD1-IC. When it is pulled high, the SLCD1-IC will be active. When it is pulled low and then high, it will reset. Pin 5: This pin should always be connected to ground (0V DC). It is the system ground for the SLCD1-IC. Pin 6: This is the input pin for the Serial data and commands. Pin 7: This is the polarity pin. This pin determines if the Serial data being received by the SLCD1-IC is True or Inverted. Pin 8: This is one of the two pins that determine the baud rate of the data that will be sent to the SLCD1-IC. See Table 2 for valid baud rates. Pin 9: LCD backlighting pin. This pin will be raised to when the special command $10 followed by $03 is received by the SLCD1-IC. The pin will be lowered to Ground when the special command $10 followed by $04 is received by the SLCD1 - IC. If LCD backlighting is not available on the LCD or if it is not needed, this pin can be used as a general-purpose output pin capable of sinking 25mA. If the load being controlled by this pin is greater than 25mA, then a transistor should be wired between this pin and the load. Pin 10: This is one of the two pins that determine the baud rate of the data that will be sent to the SLCD1-IC. See Table 2 for valid baud rates. Pin 11: LCD pin 2. This is the power pin of the LCD. The LCD can be turned off in order to lower the current draw of the system by sending the special command $10 followed by $02. The LCD can be turned on in by sending the special command $10 followed by $01. The LCD is turned on when the system is turned on or is reset. Turning the power on/off on the LCD can be especially important when the system is being powered by batteries. Pin 12: LCD pin 4. This is the RS pin of the LCD. Pin 13: LCD pin 6. This is the E pin of the LCD. Pin 14: This pin should always be connected to DC. This is the power supply for the SLCD1-IC. Pin 15: This pin should always be connected to one of the two pins on the 8 MHz parallel cut crystal. Pin 16: This pin should always be connected to one of the two pins on the 8 MHz parallel cut crystal. Pin 17: LCD pin 11. This is one of the four data lines that must be connected from the SLCD1-IC to the LCD. Pin 18: LCD pin 12. This is one of the four data lines that must be connected from the SLCD1-IC to the LCD. Baud Rate: Table 1 Table 2 shows the settings of pin 8 in order to set the baud rate. Baud Rate Pin 8 Pin V 0 V V 5 V V 0 V V 5 V Table 2

3 Sample Connection Diagram: 8 MHz 0.1uF SLCD1- IC N/C 220 4K7 From Serial Output Source 10K 1K 1 16 Diagram 2 NOTE: Diagram 2 is the suggested schematic for the SLCD1-IC. It is also the exact circuit used in our SLCD1-PCB.

4 Sending Printable Characters: Once the user matches the baud rate and polarity via the three jumpers, sending data to the SLCD1- IC is straightforward. Simply send the string of characters that should be displayed. Of course, the syntax for the Serial command is different for each language. We will use the PicBasic (www. melabs.com) SerOut command in our examples. To send the word, hello, the command would be as follows: SerOut opin, mode, [ hello ] where opin is the designated output pin of the microprocessor Mode is the code that specifies the baud rate and polarity in PicBasic Again, don t worry too much about the PicBasic syntax. Just remember that you can simply send the characters that should be displayed. Sending Instructions: Sending printable characters was described in the previous section. However, the user can also send special characters that are interpreted by the SLCD1-IC as instructions. The special instructions that are described in this section can be broken down into two types of instructions. First, there are the commands of the Hitatchi HD44780 controller. These commands are executed by sending hexadecimal value, FE (which equals decimal 254 and binary ), followed by the character that represents the command. Some of the most common commands of the Hitatchi HD44780 are listed in Table 3. In brief, you can send any HD44780 command into the SLCD1-IC and it will then pass that command to the HD44780 controller on the LCD. The examples shown below are only a sample of these commands that can be sent to the LCD. Please be sure to read the datasheet of the HD44780 and LCD that COMMAND OPERATION is being used in order to take full advantage of the $FE followed by $01 Clear display (and return home) commands. Second, there are the commands that we included in the SLCD1-IC. These commands are executed by sending hexadecimal 10 (which equals decimal 16 and binary 10000), followed by the character that represents the command. All of these commands are listed in Table $FE followed by $02 Return home $FE followed by $0C Turn cursor off $FE followed by $0E Turn underline cursor on $FE followed by $0F Turn blinking block cursor on $FE followed by $10 Move cursor one position to the left $FE followed by $14 Move cursor one position to the right $FE followed by $80 Movecursor to the beginning of the first line As described above, to send printable characters to the LCD, the user $FE followed by $C0 Move cursor to the beginning of the second line can simply send the data into pin 6 $FE followed by $94 Move cursor to the beginning of the third line of the SLCD1-IC. Sending commands is not much different than $FE followed by $D4 Move cursor to the beginning of the fourth line sending printable characters. The Table 3: Common Hitatchi HD44780 Controller Commands first thing to know is that the Hitachi HD44780 requires that $FE must be sent immediately before the command. This allows the LCD controller to distinguish between printable characters and instructions.

5 NOTE: The dollar sign acknowledges that the following number is in hexadecimal format. The FE is 254 in decimal. The HD44780 will accept either $FE or decimal 254 or even the binary or octal equivalent. However, the hexadecimal format is usually used. NOTE: Make note that the commands in Table 3 are in hexadecimal format. We will go through a few examples using some of these commands. Then, later in this document, we will describe how to take commands in binary format and build commands in hexadecimal format for use with the SLCD1-IC. Example #1: Now that we have a list of commonly-used Hitatchi HD44780 controller commands in hexadecimal format in Table 3, let s create an example with one of these commands. In this example, assume we are using a 16x4 display. We will clear the LCD and display the string, First Line on the first line. We will then move the cursor position to the beginning of the third line and display the string, Third Line. Then let s say that we want to clear the screen later in the program and print the string, Second Line on the second line of the display. Again, we will use the PicBasic SerOut command to illustrate this example. SerOut opin, mode, [$FE,$01] : pause 10 SerOut opin, mode, [ First Line ] SerOut opin, mode, [$FE,$94, Third Line ]... SerOut opin, mode, [$FE,$C0, Second Line ] NOTE: Although the three characters $FE is sent, it represents a one-byte character. That is a key point to remember. When sending serial data, you send one character at a time. With the PicBasic syntax, each byte is separated by a comma and strings are enclosed in quotation marks. The quotation marks and commas are not displayed on the LCD. IMPORTANT NOTE: It is necessary to pause the serial transmission when certain special commands are sent. One example is when clearing the display (by sending hexadecimal FE followed by hexadecimal 01). This is necessary to allow the LCD controller to execute the command. That is why there is pause 10 in Example #1. This pauses for 10 milliseconds. Various commands have different execution times. However, 10 ms should be enough of a delay. If you experience problems when sending any commands, try making this delay longer. Example #2: That first example is very useful. However, how can the user display text on a line without starting at the very beginning of the line? For example, let s display the string, Third Line on the third line, but have two spaces before the text. One way to do this is as follows: SerOut opin, mode, [$FE,$94, Third Line ] where there are two spaces before the text. However, another way would be to position the cursor at the third character of the third line and then display the text, without having to put two spaces in the front of the text. Before we show this example, we need to ask question in order to understand how we can do this: What does the $94 actually

6 mean? This is directly related to the address (DDRAM) of that position on the display; however, it is not the actual address. We will now explain, in two steps, how we arrived with the $94 value. The first step will be to reference the memory layout of the LCD which we are using (Diagram 3). The second step will be to take the address found in the first step and reference the table of general binary commands for the HD44780 controller (Table 3). So let s begin. First, we must find the address of the particular positionon the display which we want to set the cursor. This can be done with Diagram 3. Diagram 3 shows the addresses of most character LCD s. You should refer to the datasheet of the LCD which is being used to make sure of the proper memory layout and addresses. However, we will use Diagram 3 for our example. Since, in our example, we are using a 16x4 display, and we want to place a string at the third character of the third line, we need to find the address for that position. Keep in mind that the addresses in this diagram are in hexadecimal format. You will note that the addressis$14 (20 in decimal) So why don t we use $14 instead of $94? That is because we need to complete the second step in the process, which is to refer to Table 5, which is shown below. When positioning the cursor to a particular character position on the screen, the user is actually setting the DDRAM address. Therefore, we must turn our attention to the Set DDRAM Address instruction in Table 3. Bits AC0 through AC6 represent the address, in binary format. In the previous paragraph we found the address to be $14. The binary format for $14 is Therefore, the instruction code is actually in binary format, and $94 in hexadecimal format. That is how the $94 value is derived in Table 5. That is why Table 5 is only a partial list of potential instructions that can be sent to the LCD. NOTE: In Diagram 3 you will notice an RS and R/W column. These columns are included on this table for informational purposes only. The SLCD1-IC will raise and lower the voltage on these pins as needed. However, the following is a short explanation of their duty behind the scenes. The RS column in Table 5 corresponds to the Register Select pin on the LCD. When this pin is high (1), the controller expects the value which will be sent next to be data. When this pin is low (0), the controller expects the value which will be sent next to be an address. The R/W column in Table 5 corresponds to the Read/Write pin on the LCD. When this pin is high (1), a value is being requested from the controller. When this pin is low (0), a value is being sent to the controller. Now that we know how $94 is derived, we can continue with our example of displaying text at the third character position on the third line. This can be done as follows: SerOut opin, mode, [$FE, $96, Third Line ] We can derive the $96 just as we did the $94. Let s explain how the value $96 was derived. We need to find the address of the third character on the third line. We find this value in Diagram 3 to be $16, who s binary equivalent is Therefore, using Table 5, we use the command The hexadecimal equivalent is $96. Example #3: Let s look at another more example. Let s assume that the user wants to move the cursor one position to the right, regardless of the current position. The size of the display and the current position are not needed for this example. It will work the same for all display sizes and all cursor positions. From Table 3, we know that the hexadecimal code to move the cursor to the right is $0E. However, how is it derived? We will need to reference Table 5. We will need to turn our attention to the Cursor or Display Shift command. These examples should illustrate that, although many commonly-used commands are shown in Table 3, many commands can be derived by using Diagram 3 and Table 5.

7 Diagram 3 Example #4: The first three examples described Hitatchi HD44780 controller commands. Next, we will describe a few examples showing how to use the SLCD1-IC commands, which are shown in Table 4. COMMAND OPERATION $10 followed by $01 Turns on power to the LCD. $10 followed by $02 Turns off power to the LCD. $10 followed by $03 Turns on Backlighting to LCD $10 followed by $04 Turns off Backlighting to LCD This example will show how to turn the power off to Table 4: SLCD1-IC Commands the LCD. This is useful when the system is powered via batteries, so that the battery life can be extended when the display is not needed. The following command would turn off the power to the LCD.

8 Instruction RS R/W DB7 DB6 DB5 DB4 DB3 DB2 DB1 DB0 Description Clear Display Move Cursor Home On/Off Control Cursor or Display Shift Set CGRAM Address Set DDRAM Address Write Data to RAM Read Data from Ram D C B S/C R/L AC5 AC4 AC3 AC2 AC1 AC0 Set CGRAM address AC6 AC5 AC4 AC3 AC2 AC1 AC0 Set DDRAM address Turn on or off the display (D), cursor (C) and blinking of cursor (B) Set cursor (C) or display (D) shift to right (R) or left (L) 1 0 D7 D6 D5 D4 D3 D2 D1 D0 Write data into LCD RAM (DDRAM / CGRAM) 1 1 D7 D6 D5 D4 D3 D2 D1 D0 Read data from LCD RAM (DDRAM / CGRAM) SerOut opin, mode, [$10, $01] Similarly, to turn the power on to the LCD, you would use: Table 5 SerOut opin, mode, [$10, $02] : pause 100 IMPORTANT NOTE: An important note here is the pause 100 command. The LCD needs a certain amount of time to power up and initialize. A pause of 100 milliseconds should be sufficient. However, if you experience any problems, try to extend this pause value. Example #5: The next example will show how to turn the backlighting of the LCD on. This will only work if the LCD has 16 pins. If it has 14 pins, then you have one of two types of LCDs. First, you may have an LCD that does not have backlighting. Second, you may have an LCD that has backlighting, but it may have a separate Anode (positive) and Cathode (negative) pins, usually on one of the short sides of the display. In this second case, you would have to wire jumper wires from pin 15 of the SLCD1-IC to the Anode pin of the LCD. Similarly, you would have to wire a jumper wire from pin 16 of the SLCD1-IC to the Cathode pin of the LCD. These two jumpers would be needed because pin 15 on the SLCD1-IC is the positive pin for the backlighting and pin 16 on the SLCD1-IC is the negative pin for the backlighting. Now that we have described how the backlighting should be connected to the SLCD1-IC, we will show how to turn the backlighting on and then off. In order to turn the backlighting on (raise the line to ), you would use the following command:

9 SerOut opin, mode, [$10,$01] Then, lets say you want to turn the backlighting to the LCD off, you would use the following command: SerOut opin, mode, [$FE,$02] NOTE: Please note that the syntax of these command examples is PicBASIC, from ME Labs (www. melabs.com). You will need to adjust the syntax to reflect the language which you are using. However, the important point to understand is that the two bytes must be sent to the SLCD1-IC in order for the commands to execute properly. NOTE: If you do not have, or do not need, backlighting, pin 15 can be used as a general-purpose output pin to turn on/off other things such as LEDs or buzzers. However, keep in mind that pin 15 can sink no more than 25mA without an external transistor connected to it. If you attempt to turn on something that draws more than 25mA, it may damage the SLCD1-IC, an would not be covered under the warranty.

10 DB9 and DB25 Interfaces If the SLCD1-IC is being connected to a PC without the use of an RS-232 voltage level converter IC, the user must connect a 22K ohm resistor as shown in Diagram 4, when connecting to a PC. The most common type of serial port connector is the DB9. The DB25 is also popular. Refer to Diagram 4 for the proper pin assignments. Diagram 4 Electrical Characteristics: The SLCD1-IC is designed to be run on regulated DC. Therefore, the system voltage should not be out of the 0V to DC range. Any other voltage can damage the SLCD1-IC and will not be covered under the warranty.

11 Contact Information Mailing Address: P.O. Box 392 Hop Bottom, PA Shipping Address: 21 Greenwood Street Hop Bottom, PA Voice/Fax: (570) Address: Website Address:

melabs Serial LCD Firmware Version 1.0 2/7/07

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

More information

melabs Serial LCD Firmware Version 1.1 3/5/07

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

More information

CLCD1 Serial 1 wire RS232 LCD development board

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

More information

EDE700 Serial LCD Interface IC

EDE700 Serial LCD Interface IC EDE700 Serial LCD Interface IC EDE700 0=2400,1=9600 1 BAUD XMIT 18 Serial Transmit 0=Inverted,1=Standard 2 POLARITY RCV 17 Serial Receive 0=Diagnostic Mode 3 TEST OSC1 16 Oscillator Connection Connect

More information

LCD. Configuration and Programming

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

More information

Parallel Display Specifications Revision 1.0

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

More information

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

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

More information

LCD board. EB005

LCD board.   EB005 LCD board www.matrixtsl.com EB005 Contents About this document 3 Board layout 3 General information 4 Circuit description 6 Protective cover 6 Circuit diagram 7 2 Copyright About this document This document

More information

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

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

More information

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

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

More information

Dual Interface LCD Display Controller

Dual Interface LCD Display Controller Dual Interface LCD Display & Keypad Controller Product specification Nov 2013 V0.a ByVac Page 1 of 11 Contents 1. Introduction... 3 2. Features... 3 3. BV4618, Comparison... 3 3.1.1. BV4618... 3 3.1.2....

More information

K191 3 Channel RGB LED Controller

K191 3 Channel RGB LED Controller K191 3 Channel RGB LED Controller 1 Introduction. This kit has been designed to function as a versatile LED control module. The LED controller provides 3 high current channels to create light effects for

More information

DEV-1 HamStack Development Board

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

More information

LMB202DBC LCD Module User Manual

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

More information

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

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

More information

LCD MODULE DEM SBH-PW-N

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

More information

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

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

More information

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

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

More information

NHD 0216K3Z FL GBW. Serial Liquid Crystal Display Module

NHD 0216K3Z FL GBW. Serial Liquid Crystal Display Module NHD 0216K3Z FL GBW Serial Liquid Crystal Display Module NHD Newhaven Display 0216 2 lines x 16 characters K3Z Model F Transflective L Yellow/Green LED backlight G STN Gray B 6:00 view W Wide Temperature

More information

LCD MODULE DEM SBH-PW-N

LCD MODULE DEM SBH-PW-N DISPLAY Elektronik GmbH LCD MODULE DEM 16216 SBH-PW-N Version: 3 26.09.2016 GENERAL SPECIFICATION MODULE NO. : DEM 16216 SBH-PW-N CUSTOMER P/N VERSION NO. CHANGE DESCRIPTION DATE 0 ORIGINAL VERSION 12.12.2002

More information

PROTO BOARD SETUP Here is a schematic of the circuit we will build.

PROTO BOARD SETUP Here is a schematic of the circuit we will build. PROTO BOARD SETUP Here is a schematic of the circuit we will build. Cut off the connector from the end of your 5V supply and strip the insulation off for one half inch. Tin the striped ends with solder.

More information

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

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

More information

LCD MODULE DEM SBH-PW-N

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

More information

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

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

More information

LCD MODULE DEM SBH-PW-N

LCD MODULE DEM SBH-PW-N Display Elektronik GmbH LCD MODULE DEM 16217 SBH-PW-N Product specification Version: 2.1.2 05. Aug. 2008 GENERAL SPECIFICATION MODULE NO. : DEM 16217 SBH-PW-N CUSTOMER P/N VERSION NO. CHANGE DESCRIPTION

More information

JUL. 27, 2001 Version 1.0

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

More information

AXE033 SERIAL/I2C LCD & CLOCK

AXE033 SERIAL/I2C LCD & CLOCK AXE033 SERIAL/I2C LCD & CLOCK The serial LCD and clock module allows microcontroller systems (e.g. PICAXE) to visually output user instructions or readings, without the need for a computer. This is especially

More information

LCD Module User Manual

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

More information

T100MD (Rev D-1) PLC Installation Guide

T100MD (Rev D-1) PLC Installation Guide T100MD-1616+ (Rev D-1) PLC Installation Guide LCD Display Module 1N4007 (optional) + - 12 to 24V DC Power Supply for PLC EEPROM Write-Protection when J2 at WP 14-pin LCD Display Port Two-wire RS485 + -

More information

LCD MODULE DEM SYH

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

More information

LCD Module with I2C / Serial Interface and Keypad Control «LCD I2C/Serial» User s Guide. Copyright 2008 IMS

LCD Module with I2C / Serial Interface and Keypad Control «LCD I2C/Serial» User s Guide. Copyright 2008 IMS LCD Module with I2C / Serial Interface and Keypad Control «LCD I2C/Serial» User s Guide Copyright 2008 IMS CONTENTS 1 INTRODUCTION... 3 2 MODULE CONNECTION... 3 2.1 I2C/Serial interface connector...4 2.2

More information

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

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

More information

NHD-0216K3Z-NS(RGB)-FBW-V3

NHD-0216K3Z-NS(RGB)-FBW-V3 NHD-0216K3Z-NS(RGB)-FBW-V3 Serial Liquid Crystal Display Module NHD- Newhaven Display 0216-2 Lines x 16 Characters K3Z- Model N- Transmissive S(RGB)- Side LED Backlights (Red-Green-Blue) F- FSTN(-) B-

More information

SC1602LC 16x2 Large Characters RS232 LCD Module. User s Manual. Large Viewing Area 99mm x 24mm. Large Character Size. 4.84mm x 9.66mm.

SC1602LC 16x2 Large Characters RS232 LCD Module. User s Manual. Large Viewing Area 99mm x 24mm. Large Character Size. 4.84mm x 9.66mm. Large Viewing Area 99mm x 24mm Large Character Size 4.84mm x 9.66mm Features 16x2 Large Characters LCD RS232 Interface Simple Serial Command Wide Range Voltage Operation ( 9-15V ) 8 User s Defined Characters

More information

Two-wire. Jumper for 12V. J2 Enable Adjust D/A1. Super PLC Warning: Warranty Void if this label is damaged 62256LP-12 CMOS RAM 4.

Two-wire. Jumper for 12V. J2 Enable Adjust D/A1. Super PLC Warning: Warranty Void if this label is damaged 62256LP-12 CMOS RAM 4. T100MD-888+ PLC Installation Guide LCD Display Module 1N4007 (optional) + - 12 to 24V DC Power Supply for PLC Contrast Adjust 14-pin LCD Display port Two-wire RS485 + - Jumper for 12V 1000µ F 5 E.Cap (Optional)

More information

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

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

More information

LCD MODULE DEM FGH-LR

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

More information

NHD-0220D3Z-FL-GBW-V3

NHD-0220D3Z-FL-GBW-V3 NHD-0220D3Z-FL-GBW-V3 Serial Liquid Crystal Display Module NHD- Newhaven Display 0220-2 Lines x 20 Characters D3Z- Model F- Transflective L- Yellow/Green LED Backlight G- STN Positive - Gray B- 6:00 Optimal

More information

NHD-C0216CZ-FSW-FBW-3V3

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

More information

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

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

More information

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

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

More information

NHD-0220D3Z-FL-GBW-V3

NHD-0220D3Z-FL-GBW-V3 NHD-0220D3Z-FL-GBW-V3 Serial Liquid Crystal Display Module NHD- Newhaven Display 0220-2 Lines x 20 Characters D3Z- Model F- Transflective L- Yellow/Green LED Backlight G- STN-Gray B- 6:00 Optimal View

More information

EECS 140 Laboratory Exercise 4 3-to-11 Counter Implementation

EECS 140 Laboratory Exercise 4 3-to-11 Counter Implementation EECS 140 Laboratory Exercise 4 3-to-11 Counter Implementation 1. Objectives A. To apply knowledge of combinatorial design. B. Gain expertise in designing and building a simple combinatorial circuit This

More information

LCD Micro Serial/I 2 C Interface Module for R.G.B backlights. Technical Data

LCD Micro Serial/I 2 C Interface Module for R.G.B backlights. Technical Data LCD Micro Serial/I 2 C Interface Module for R.G.B backlights Technical Data DS-LCDD5 Features Supports new LCD panels with RGB backlights*. Micro size (53 x 29mm) to piggy-back on the LCD module and form

More information

Designer Systems. LCD Micro Serial/I 2 C Interface Module for R.G.B backlights. Technical Data

Designer Systems. LCD Micro Serial/I 2 C Interface Module for R.G.B backlights. Technical Data LCD Micro Serial/I 2 C Interface Module for R.G.B backlights Technical Data Designer Systems PRODUCT DESIGN AND MANUFACTURING DS-LCDD5.co.uk Features New improved version with higher serial speeds and

More information

RS232 Backer Board for Alphanumeric LCDs

RS232 Backer Board for Alphanumeric LCDs RS232 Backer Board for Alphanumeric LCDs IES-ABB-RS232-01 Product Overview The IES-ABB-RS232-01 micro module provide a simple means of connecting any device capable of standard RS232 serial communication

More information

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

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

More information

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

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

More information

Lab 3 LCD Mar

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

More information

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

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

More information

T100MD PLC Installation Guide

T100MD PLC Installation Guide T100MD-2424+ PLC Installation Guide LCD Display Module MCR 12 to 24V DC Power Supply for PLC Master Control Relay for Output. + - EEPROM Write-Protection when J2 at WP 14-pin LCD Display Port Two-wire

More information

User s Manual Closer to Real, Zigbee Module ZIG-100. Wireless Communication. ROBOTIS CO.,LTD

User s Manual Closer to Real, Zigbee Module ZIG-100. Wireless Communication. ROBOTIS CO.,LTD User s Manual 2006-07-06 Closer to Real, Wireless Communication ROBOTIS CO.,LTD. www.robotis.com +82-2-2168-8787 Contents 1. Page 02 2. Zigbee Setting Page 06 3. PC Interface Zig Board Schematic Page 10

More information

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

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

More information

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

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

More information

Lab Experiment 9: LCD Display

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

More information

I2C-AI418S I2C Bus Voltage and Current Analog Input Board

I2C-AI418S I2C Bus Voltage and Current Analog Input Board I2C-AI48 I2C Bus Voltage and Current Analog Input Board Features 4 Channels Of Analog Inputs MCP3424, 2,4,6 and 8-Bit Voltage Input: -5V, -V Current Input: -2mA, 4-2mA, -4mA I2C Bus Interface Khz, 4Khz,

More information

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

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

More information

LCD Module User Manual

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

More information

MIFARE Secure OEM Reader Module Data Sheet

MIFARE Secure OEM Reader Module Data Sheet 724-10 MIFARE Secure OEM Reader Module Data Sheet General Description The 724-10 MIFARE Secure OEM Reader Module is a fully encapsulated device containing all the electronics required to perform a secure

More information

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

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

More information

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

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

More information

Keywords Digital IC tester, Microcontroller AT89S52

Keywords Digital IC tester, Microcontroller AT89S52 Volume 6, Issue 1, January 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Digital Integrated

More information

Dot Matrix LCD Controller Driver

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

More information

BV4109. Serial LCD Controller. Product specification November ByVac 2006 ByVac Page 1 of 12

BV4109. Serial LCD Controller. Product specification November ByVac 2006 ByVac Page 1 of 12 Product specification November 2012 ByVac 2006 ByVac Page 1 of 12 IASI-LCD Module BV4108 Contents 1. Introduction...4 2. Features...4 3. Electrical interface...4 3.1. Serial...4 3.2. Factory...4 3.3. LCD

More information

LCD Module User Manual

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

More information

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

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

More information

Shack Clock kit. U3S Rev 2 PCB 1. Introduction

Shack Clock kit. U3S Rev 2 PCB 1. Introduction Shack Clock kit U3S Rev 2 PCB 1. Introduction Thank you for purchasing the QRP Labs Shack Clock kit. This clock uses the Ultimate3S QRSS/WSPR kit hardware, but a different firmware version. It can be used

More information

SK18A. 18 Pins PIC START-UP KIT. User s Manual V1.1. Dec 2007

SK18A. 18 Pins PIC START-UP KIT. User s Manual V1.1. Dec 2007 SK18A 18 Pins PIC START-UP KIT User s Manual V1.1 Dec 2007 Information contained in this publication regarding device applications and the like is intended through suggestion only and may be superseded

More information

Saturn Reader User Manual

Saturn Reader User Manual FCC Compliance Saturn Reader User Manual Version 1.00 On Track Innovations Ltd. (O T I) P/N 1100054F P/N 1100054F page 0 FCC Compliance FCC Compliance This device (Reader Saturn 3000) complies with Part

More information

LCD03 - I2C/Serial LCD Technical Documentation

LCD03 - I2C/Serial LCD Technical Documentation LCD03 - I2C/Serial LCD Technical Documentation 2YHUYLHZ The I2C and serial display driver provides easy operation of a standard 20*4 LCD Text display. It requires only a 5v power supply and the two data

More information

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

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

More information

Rapid28iXL PIC Prototyping PCB User Manual

Rapid28iXL PIC Prototyping PCB User Manual Description Features This is a PCB designed to facilitate the rapid prototyping of a device based on a 28 pin Microchip PIC microcontroller. To allow users to focus on their application, we take care of

More information

Designer Systems. LCD Micro Serial Interface Module for Alpha LCD panels. Technical Data

Designer Systems. LCD Micro Serial Interface Module for Alpha LCD panels. Technical Data Designer Systems PRODUCT DESIGN AND MANUFACTURING.co.uk LCD Micro Serial Interface Module for Alpha LCD panels Technical Data DS-LCDD3 Features New improved version with higher serial speeds Micro size

More information

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

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

More information

Rapid40iXL PIC Prototyping PCB User Manual

Rapid40iXL PIC Prototyping PCB User Manual Description This is a PCB designed to facilitate the rapid prototyping of a device based on a 40 pin Microchip PIC microcontroller. To allow users to focus on their application, we take care of key housekeeping

More information

Serial LCD II with 11 Remote DIO

Serial LCD II with 11 Remote DIO with 11 Remote DIO Technical Manual Rev 1r0 The new display kit is an interface board that allows you to use LCD displays in your project without the coding pains associated with it. Displaying a message

More information

Home Security System with Remote Home Automation Control

Home Security System with Remote Home Automation Control Home Security System with Remote Home Automation Control Justin Klumpp Senior Project Hardware Description Western Washington University April 24 2005 Professor Todd Morton Introduction: This document

More information

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

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

More information

SC1602LCPro-YG ( Yellow Green Backlight ) SC1602LCPro-B ( Blue Backlight ) Large Character Size ( 4.88x9.66 mm )

SC1602LCPro-YG ( Yellow Green Backlight ) SC1602LCPro-B ( Blue Backlight ) Large Character Size ( 4.88x9.66 mm ) SC1602LCPro-YG ( Yellow Green Backlight ) SC1602LCPro-B ( Blue Backlight ) Large Character Size ( 4.88x9.66 mm ) Features 16 x 2 Large Characters RS485 Serial Interface Programmable Device Address Programmable

More information

MOS-AV-162A Technical Manual. Revision: 1.0

MOS-AV-162A Technical Manual. Revision: 1.0 MOS-AV-162A Technical Manual Revision: 1.0 Contents Contents ii 1 Introduction 1 1.1 What to Expect From the MOS-AV-162A........................... 1 1.2 What Not to Expect From the MOS-AV-162A.........................

More information

LCD05 datasheet 1.0

LCD05 datasheet 1.0 LCD05 green displays LCD05 blue displays The I2C and serial display driver provides easy operation of a standard 20 x 4 or 16 x 2 LCD Text display. It requires only a 5v power supply and the two data connections

More information

I/O232-A User s Guide

I/O232-A User s Guide rmv electronics I/O232-A User s Guide DISCLAIMER: RMV ELECTRONICS INC. does not assume any liability arising from the application and/or use of the product/s described herein, nor does it convey any license.

More information

EA DOGS164x-A. INCL. CONTROLLER SSD1803A WITH SPI, I²C available at 1 piece! Switchable font height ACCESSORIES

EA DOGS164x-A. INCL. CONTROLLER SSD1803A WITH SPI, I²C available at 1 piece! Switchable font height ACCESSORIES Issue 1.2019 INCL. CONTROLLER SSD1803A WITH SPI, I²C available at 1 piece! Switchable font height Dimension 36,0 x 27.5 x 4.6 mm TECHNICAL DATA * HIGH-CONTRAST LCD SUPERTWIST DISPLAY * OPTIONAL LED BACKLIGHT

More information

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

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

More information

MUSRF05 Interface I.C.

MUSRF05 Interface I.C. MUSRF05 Interface I.C. This allows up to 6 of the superb Devantech SRF05 Ultrasonic range-finding modules to be controlled using a simple serial 2 wire connection from PICAXE or BASIC STAMP. PICAXE & Basic

More information

Exclusive 2.5 GHz Frequency Counter

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

More information

LCD03 - I2C/Serial LCD Technical Documentation

LCD03 - I2C/Serial LCD Technical Documentation LCD03 - I2C/Serial LCD Technical Documentation Pagina 1 di 5 Overview The I2C and serial display driver provides easy operation of a standard 20*4 LCD Text display. It requires only a 5v power supply and

More information

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

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

More information

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

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

More information

Introduction Page 1. Power Supply Requirements & Hardware Options Page 2. External Connectors (Functions & Pinouts) Page 2

Introduction Page 1. Power Supply Requirements & Hardware Options Page 2. External Connectors (Functions & Pinouts) Page 2 A262B Interface Board Connection and Application Data Introduction Page 1 Power Supply Requirements & Hardware Options Page 2 External Connectors (Functions & Pinouts) Page 2 Software Requirements (Control

More information

QUASAR KIT No DIGITAL DOWN TIMER 99 MIN WITH PIC

QUASAR KIT No DIGITAL DOWN TIMER 99 MIN WITH PIC QUASAR KIT No 1173 - DIGITAL DOWN TIMER 99 MIN WITH PIC KIT 1173 is a digital countdown timer based on a micro controller, thus securing reliability and excellent operation under any circumstances. It

More information

1:N REDUNDANT SWITCHING UNIT REMOTE CONTROL TERMINAL

1:N REDUNDANT SWITCHING UNIT REMOTE CONTROL TERMINAL MITEQ TECHNICAL NOTE 25T051 OCTOBER 2001 REV B 1.1 GENERAL DESCRIPTION 1.1.1 PHYSICAL 1:N REDUNDANT SWITCHING UNIT REMOTE CONTROL TERMINAL SECTION 1 INTRODUCTION Figure 1-1. Front Panel, 1:N Redundant

More information

Instruction Manual for BE-SP3 Circuit. 10/21/07

Instruction Manual for BE-SP3 Circuit. 10/21/07 Page 1 of 54 Instruction Manual for BE-SP3 Circuit. 10/21/07 Page 1 Index: Page 2 BE-SP3 Circuit Specifications. Page 3-4 Intro to the BE-SP3. Page 5 Basics of serial to parallel. Page 6-7 ASCII Code.

More information

LCDs. Embedded Systems Interfacing. 20 September 2011

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

More information

Shack Clock kit PCB Revision: QCU Rev 1 or QCU Rev 3

Shack Clock kit PCB Revision: QCU Rev 1 or QCU Rev 3 1. Introduction Shack Clock kit PCB Revision: QCU Rev 1 or QCU Rev 3 Thank you for purchasing this QRP Labs Shack Clock kit. The kit uses the same PCB and bag of components as some other QRP Labs kits.

More information

DOT MATRIX CHARACTER LCD MODULE USER S MANUAL

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

More information

MHz TRANSCEIVER. Bi-Directional Send and Receive. Compatible with: Transmitter Receiver Transceiver. Part # Part #

MHz TRANSCEIVER. Bi-Directional Send and Receive. Compatible with: Transmitter Receiver Transceiver. Part # Part # 433.92 MHz TRANSMITTER 433.92 MHz TRANSCEIVER 433.92 MHz RECEIVER Part # 27986 Part # 27988 Part # 27987 Single Direction Send Only Bi-Directional Send and Receive Single Direction Receive Only Compatible

More information

Lab #2: Building the System

Lab #2: Building the System Lab #: Building the System Goal: In this second lab exercise, you will design and build a minimal microprocessor system, consisting of the processor, an EPROM chip for the program, necessary logic chips

More information

SPECIFICATIONS FOR LCD MODULE

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

More information

SPECIFICATIONS FOR LCD MODULE

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

More information