ALCD (Advance LCD) SERIES

Size: px
Start display at page:

Download "ALCD (Advance LCD) SERIES"

Transcription

1 ALCD (Advance LCD) SERIES INTRODUCTION ALCD is Serial LCD module controlled through Serial communication. Most of existing LCD adopts Parallel communication, which needs lots of control lines and complicated control. On the other hand, ALCD adopts Serial communication, which needs only one or two lines to transmit data and display it on LCD. In addition, ALCD allows users to use LCD with easy even they do not have comprehensive knowledge of LCD module. GENERAL DESCRIPTION Various sizes from 16x2 lines to 40x4 lines 3lines interface with PICBASIC and 4lines interface with Microcontroller (PC) Supporting 5V ~ 15V level of RS232 (works automatically in accordance with port selection) On-board RS232 driver and supporting eight kinds of baud rates Supporting Insert/overwrite mode, function keys such as direction, space, Enter, Del, Home, End and Back space. Backlight control by software. On-board 56 Bytes of Ring buffer High-speed control from Microcontroller/PC without delay Supporting Control codes for a number of functions such as positioning, cursor control, display clear and etc Providing program for emulating ALCD Various transmission mode ( General command set, ESC code set, Character transmission by Byte) Model Display Backlight ALCD-162-BL 16 BY 2 LED ALCD-164-BL 16 BY 4 LED ALCD-204-BL 20 BY 4 LED ALCD-402-BL 40 BY 2 LED ALCD-404-BL 40 BY 4 LED <Table-1> Model LAYOUT <Picture-1> ALCD Layout 1 COMFILE Technology

2 ALCD (Advanced LCD) SERIES BAUD RATE You can select eight kind of baud rate with DIP switch as the following table. Baud rate Setting value / DIP set <Table-2> Setting baud rate CONNECTOR 3PIN-CONNECTOR IS USED TO CONNECT WITH PICBASIC. You can control ALCD through PICBUS of PICBASIC. Although it is possible to connect to Microcontroller chip, in the case, ALCD module cannot receive Read Code (0x88). When it is used with PICBUS of PICBASIC, its baud rate must be set 19200BPS. It uses 5V level of RS232 and consists of RXD, V CC and GND. 4PIN-CONNECTOR IS USED TO CONNECT WITH MICROCONTROLLER/PC DIRECTLY. In this case, Microcontroller/PC should use MAX232 to match RS232 level. Around ±15V of RS232 signal can be used without conversion. ALCD has built-in RS232 driver called MAX232. This connector consists of TXD, RXD, VCC and GND. ALCD controller send READY CODE (0x88) through TXD every process of control code. Variable register adjust the brightness of LCD. Comfile Technology 2

3 ALCD (Advance LCD) SERIES CONTROL CODE CODE #1 (BASIC CODE) When a process completes, ALCD controller send Ready code, 0x88. It means that ALCD is ready to process incoming code. Control code Transmitted byte Operation A0 1 A1 X Y 3 A2 String 00 Free A A3 0C 2 Hide cursor A3 0E 2 A3 0A 2 Initialize ALCD (it takes around 50ms) Execute the following process in order - Display cursor - Stop cursor flickering - Locate cursor at (0,0) - Set Overwrite mode - Turn on Backlight Appoint location of display. (X is row and Y is column) Range of display is different according to ALCD model. Cursor is placed on the appointed location Output string 0x00 code next to string is NULL code indicating the end of string (similar as C language). Transmitted string will be outputted instantly. Even the code of CR LF is between strings, it will be handled automatically. ** If you handle string over buffer capacity, 56bytes, you must not use it in INSERT mode. (Because processing speed in INSERT mode is relatively slow, it could bring about Over-flow.) In the case, you must handle the string in OVERWRITE mode. Even when you handle character one by one just like key-input, you must send it in control code format. (Only when it receives code 0x00, the ALCD controller recognizes all process completed and sends code 0x88.) (ex) A2 Character 00 A2 String 00 When you output string less than 56bytes, you don t have to set delay even in working with Microcontroller which uses BPS. However, when you output string larger than 56nbytes, you have to set a little delay between byte transmissions so that ALCD controller can clear the content of buffer in outputting. If you use PICBASIC module, there is no limitation on transmission of string. (No need of delay) Clear ALCD screen Location of display is set (0,0). Show cursor ALCD default Stop blinking cursor ALCD default A3 0B 2 Blink cursor A4 CODE 8BYTE 10 Transmit/save user-defined bit map to/on CGRAM CODE is a call-number (1~8) for stored bit map. (If other code is used, error will occur.) 8BYTE is 5*8 of bit map having 8 bytes of length. The stored bit map can be called by its call-number. 3 COMFILE Technology

4 ALCD (Advanced LCD) SERIES Control code Transmitted byte Operation A Turn on backlight A Turn off backlight A A6 0D 2 A A A A A A A6 2E 2 A6 2D 2 A A7 01 HB LB 4 A7 02 HB LB 4 (ex) If you send control code as follow, When A2 String... CODE String The CODE will be displayed between strings. Same as Backspace key Available in only the line where cursor locates currently Same as Enter key CR LF code Same as End key Move cursor to end of line where cursor locates currently Same as Home key Move cursor to beginning of line where cursor locates currently Same as Left key Move cursor by on character to the left Same as Up key Move cursor by one line upward Same as Right key Move cursor by on character to the right Same as Down key Move cursor by on line downward Same as Del key Available in only the line where cursor locates currently Set INSERT mode Because there needs lots of time to process one character in INSERT mode, when you perform batch-outputting string, you have to work in OVERWRITE mode. This is useful when you handle characters in keyboard input method. Set OVERWRITE mode Default mode Recommended in batch-outputting string The processing speed is very high and you can handle a number of strings without need of delay and Overflow even at BPS. (In case of batch transmission not exceeding buffer capacity, 56 bytes) Display transmitted 16bit value just as in hexadecimal character on ALCD. Display on current cursor to the right HB : higher byte LB : lower byte Expressed in four digits unconditionally Empty space is filled with 0. Display transmitted 16bit value just as in decimal character on ALCD. Display on current cursor to the right HB : higher byte LB : lower byte Expressed in five digits unconditionally Empty space is filled with 0. Comfile Technology 4

5 ALCD (Advance LCD) SERIES CODE #2 (ESC EXTENSION CODE) The reason why ESC codes are needed is that it is hard to transmit value, 80h~FFh, through serial port in Basic language such as Visual Basic. Therefore, there is need of extended ESC control code so that all transmission value can be controlled by only limited value in range of 00h~7Fh. ESC has 27 as decimal number and has 1Bh as hexadecimal number. A means character A. When a process completes, ALCD controller send Ready code, 0x88. It means that ALCD is ready to process incoming code. Control code Transmitted byte Operation ESC A 2 Same as [A0] code ESC B X Y 4 Same as [A1 X Y] ESC C String 00 Free Same as [A2 String 00] ESC D 01 3 Same as [A3 01] ESC D 0C 3 Same as [A3 0C] ESC D 0E 3 Same as [A3 0E] ESC D 0A 3 Same as [A3 0A] ESC D 0B 3 Same as [A3 0B] ESC E CODE 8BYTE 11 Same as [A4 CODE 8BYTE] ESC F 01 3 Same as [A5 01] ESC F 02 3 Same as [A5 02] ESC G 08 3 Same as [A6 08] ESC G 0D 3 Same as [A6 0D] ESC G 23 3 Same as [A6 23] ESC G 24 3 Same as [A6 24] ESC G 25 3 Same as [A6 25] ESC G 26 3 Same as [A6 26] ESC G 27 3 Same as [A6 27] ESC G 28 3 Same as [A6 28] ESC G 2E 3 Same as [A6 2E] ESC G 2D 3 Same as [A6 2D] ESC G 00 3 Same as [A6 00] No related code to [A7 01 HB LB]. Because 00h~FFh are not available in Visual Basic Language, No related code to [A7 02 HB LB] Because 00h~FFh are not available in Visual Basic Language, CODE #3 (DIRECT OUTPUT BY BYTE) This function can display one character by Byte without control code. The range of character code is 20h~7Eh. Characters in ALCD may be different from that of Windows. When a process completes, ALCD controller doesn t send Ready code, 0x88 because that it doesn t process any control code). Transmission Transmitted byte Operation 1byte character code 1 Character related to transmitted code is displayed on cursor instantly. 5 COMFILE Technology

6 ALCD (Advanced LCD) SERIES CONNECTION CONNECTION TO PC CONNECTION TO PICBASIC CONNECTION TO MICROCONTROLLER Comfile Technology 6

7 ALCD (Advance LCD) SERIES EMULATOR INTRODUCTION This program allows users to test all ALCD functions with easy and simple. Moreover, it helps users to learn how to use the ALCD. You need a dedicated cable to connect ALCD module to PC. Before executing the test program, you should connect ALCD to PC with the dedicated cable, and open communication port. <Picture-2> LCD TESTER LCD SELECTION MENU 7 COMFILE Technology

8 ALCD (Advanced LCD) SERIES SETUP MENU This menu consists of Synchronization, Comport Setup and Port. Synchronization makes Emulator s screen same as ALCD module s screen including Key operation, cursor location, displayed character etc. CONTROL MENU You can test all control code for ALCD in this menu. String output will output all characters on Emulator s screen to ALCD screen. Two menu, LCD initialization and Clear LCD screen, take effect on both of two screens, Emulator and ALCD module when Synchronization is set. You can set Insert mode or Overwrite mode in the Mode menu. CONTROL MENU > FONT EDITOR You can make/store/output your own BITMAP in CGRAM. CODE uses 1~8. Clear button initializes current screen. The point where mouse clicks on turns black (it turns 1 logically, other points is 0.). Because it stores the BITMAP its internal space, there is no need of connection to ALCD to store BITMAP. Comfile Technology 8

9 ALCD (Advance LCD) SERIES CONTROL MENU > CURSOR LOCATOR This menu executes control code for positioning cursor. With clicking Appointing location button after appointing location in the combo box, cursor will be on appointed location. CONTROL MENU > KEY PAD This menu executes control code for Key operation. Each button is exactly same as that of keyboard. Key operation may be different from that of PC editor due to characteristic of ALCD. You should make certain that Key Operation is adjusted in accordance with characteristic of ALCD. CONTROL MENU > VALUE This menu displays the value a user inputs by hexadecimal/decimal on ALCD screen. If you want to display it by hexadecimal, click Hexadecimal button. If you want to display it by decimal, click Decimal button. The transmitted data between Emulator and ALCD module are control code and 16bit value.(alcd controller processes switching its display format. DEDICATED CABLE Dedicated cable for connection between ALCD and PC is sold separately. 9 COMFILE Technology

10 ALCD (Advanced LCD) SERIES EXAMPLE SOURCE EX1) IN PICBASIC =================================================== Advanced LCD version test program =================================================== DIM I AS BYTE SET PICBUS HIGH HIGH is 19200, LOW is 4800 LCDINIT CSROFF BUSOUT &HA0 ' LCD initialization (including clear LCD screen) BUSOUT &HA1;&H00;&H00 ' Display location BUSOUT &HA2;&H30;&H00 ' Display string BUSOUT &HA3;&H01 ' Clear LCD screen BUSOUT &HA3;&H0C ' Hide cursor BUSOUT &HA3;&H0E ' Show cursor BUSOUT &HA3;&H0A ' Stop blinking cursor BUSOUT &HA3;&H0B ' Blink cursor BUSOUT &HA5;&H01 ' Turn on backlight BUSOUT &HA5;&H02 ' Turn off backlight BUSOUT &HA6;&H08 ' BACKSPACE key BUSOUT &HA6;&H0D ' ENTER key BUSOUT &HA6;&H23 ' END key BUSOUT &HA6;&H24 ' HOME key BUSOUT &HA6;&H25 ' LEFT key BUSOUT &HA6;&H26 ' UP key BUSOUT &HA6;&H27 ' RIGHT key BUSOUT &HA6;&H28 ' DOWN key BUSOUT &HA6;&H2E ' DEL key BUSOUT &HA6;&H2D ' Set INSERT mode BUSOUT &HA6;&H00 ' Set OVERWRITE mode BUSOUT &HA7;&H01;Higer;Lower ' Display transmitted 16bit value by hexadecimal number BUSOUT &HA7;&H02;Higher;Lower ' Display transmitted 16bit value by decimal number I = 255 LOCATE 0,0 PRINT "TEST ELCD " LOCATE 0,1 PRINT DEC(I,3,0) Comfile Technology 10

11 ALCD (Advance LCD) SERIES EX2) WITH MICROCONTROLLER IN C LANGUARE /* lcd test2 */ #include<16f876.h> #use delay(clock= ) #use rs232(baud=19200,xmit=pin_b0,rcv=pin_b1) void main() { delay_ms(200); // Delay time for initialization of LCD printf("%c%c",0xa3,0x1); // printf( %c,0xa0); ' LCD initialization (including clear LCD screen) // printf( %c%c%c,0xa1,0,0); ' Display location // printf( %c%c%c,0xa2,0x30,0); ' Display string // printf( %c%c,0xa3,0x01); ' Clear LCD screen // printf( %c%c,0xa3,0x0c); ' Hide cursor // printf( %c%c,0xa3,0x0e); ' Show cursor // printf( %c%c,0xa3,0x0a); ' Stop blinking cursor // printf( %c%c,0xa3,0x0b); ' Blink cursor // printf( %c%c,0xa5,0x01); ' Turn on backlight // printf( %c%c,0xa5,0x02); ' Turn on backlight // printf( %c%c,0xa6,0x08); ' BACKSPACE key // printf( %c%c,0xa6,0x0d); ' ENTER key // printf( %c%c,0xa6,0x23); ' END key // printf( %c%c,0xa6,0x24); ' HOME key // printf( %c%c,0xa6,0x25); ' LEFT key // printf( %c%c,0xa6,0x26); ' UP key // printf( %c%c,0xa6,0x27); ' RIGHT key // printf( %c%c,0xa6,0x28); ' DOWN key // printf( %c%c,0xa6,0x2e); ' DEL key // printf( %c%c,0xa6,0x2d); ' Set INSERT mode // printf( %c%c,0xa6,0); ' Set OVERWRITE mode // printf( %c%c,0xa7,0x01,higher,lower); ' Display transmitted 16bit value by hexadecimal number // printf( %c%c,0xa7,0x02,higher,lower); ' Display transmitted 16bit value by decimal number } while(1){ printf("%c%c%c",0xa1,0,0); printf("%ctest ALCD%c",0xa2,0); } 11 COMFILE Technology

12 ALCD (Advanced LCD) SERIES EX3) IN VISUAL BASIC Private Sub Command10_Click() ' ENTER key TX = Chr(27) + "G" + Chr(&HD) Private Sub Command11_Click() ' END KEY TX = Chr(27) + "G" + Chr(&H23) Private Sub Command12_Click() ' HOME KEY TX = Chr(27) + "G" + Chr(&H24) Private Sub Command13_Click() ' INSERT mode TX = Chr(27) + "G" + Chr(&H2D) Comfile Technology 12

13 ALCD (Advance LCD) SERIES Private Sub Command14_Click() ' DEL character TX = Chr(27) + "G" + Chr(&H2E) Private Sub Command15_Click() ' OVERWRITE mode TX = Chr(27) + "G" + Chr(0) Private Sub Command16_Click() ' Clear screen TX = Chr(27) + "D" + Chr(1) Private Sub Command17_Click() ' Hide cursor TX = Chr(27) + "D" + Chr(&HC) 13 COMFILE Technology

14 ALCD (Advanced LCD) SERIES Private Sub Command18_Click() ' Show cursor TX = Chr(27) + "D" + Chr(&HE) Private Sub Command19_Click() ' Blink ON TX = Chr(27) + "D" + Chr(&HB) Private Sub Command20_Click() ' Blink OFF TX = Chr(27) + "D" + Chr(&HA) Private Sub Command21_Click() ' Using user-defined area TX = Chr(27) + "E" + Chr(8) + Chr(0) + Chr(255) + Chr(0) + Chr(255) + Chr(0) + Chr(255) + Chr(0) + Chr(255) TX = Chr(27) + "C" + Chr(8) + Chr(0) Private Sub Command22_Click() ' Backlight ON TX = Chr(27) + "F" + Chr(1) Comfile Technology 14

15 ALCD (Advance LCD) SERIES Private Sub Command23_Click() ' Backlight OFF TX = Chr(27) + "F" + Chr(2) Private Sub Command3_Click() TX = Chr(27) + "A" + Chr(27) + "F" + Chr(1) + Chr(27) + "B" + Chr(0) + Chr(0) + Chr(27) + "C" + "ABCDEFG" + Chr(0) Private Sub Command4_Click() TX = Chr(27) + "D" + Chr(1) + Chr(27) + "F" + Chr(2) + Chr(27) + "G" + Chr(24) 15 COMFILE Technology

16 ALCD (Advanced LCD) SERIES Private Sub Command5_Click() TX = Chr(27) + "G" + Chr(&H26) Private Sub Command6_Click() TX = Chr(27) + "G" + Chr(&H28) Private Sub Command7_Click() TX = Chr(27) + "G" + Chr(&H25) Private Sub Command8_Click() TX = Chr(27) + "G" + Chr(&H27) Private Sub Command9_Click() ' BACKSPACE TX = Chr(27) + "G" + Chr(8) Comfile Technology 16

When JP1 is cut, baud rate is Otherwise, baud rate is Factory default is that JP1 is shorted. (JP1 is jumper type in some model)

When JP1 is cut, baud rate is Otherwise, baud rate is Factory default is that JP1 is shorted. (JP1 is jumper type in some model) ELCD SERIES INTRODUCTION ALCD is Serial LCD module which is controlled through Serial communication. Most of existing LCD adopts Parallel communication which needs lots of control lines and complicated

More information

Mobile POS Thermal printer

Mobile POS Thermal printer PK109 Mobile POS Thermal printer MEGADATA INDUSTRIAL, Inc. 1F, NO.10, Lane 58, Ta Chuan Street, TAICHUNG, TAIWAN R.O.C. TEL: +886-4-2376-6881 FAX: +886-4-2371-7974 www.posjet.com.tw megadata@ms21.hinet.net

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

FEC-240G. Rev. Date

FEC-240G. Rev. Date Model User s Manual Contents Contents. 1 Features... 2 Type Model and Serial Number... 2 Specifications... 3 Interface Connections...... 4 DIP Switch Setting... 6 Dimension... 7 Command Set Table... 8

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

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

THERMAL PRINTER SPEC BAS Basic Features. 1.) Type : PANEL Mounting or DESK top type. 2.) Printing Type : THERMAL PRINT

THERMAL PRINTER SPEC BAS Basic Features. 1.) Type : PANEL Mounting or DESK top type. 2.) Printing Type : THERMAL PRINT THERMAL PRINTER SPEC BAS - 6026 1. Basic Features 1.) Type : PANEL Mounting or DESK top type 2.) Printing Type : THERMAL PRINT 3.) Printing Speed : 25mm / SEC 4.) Printing Column : 24 COLUMNS 5.) FONT

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

Fics-RT1. User s Manual

Fics-RT1. User s Manual Fics-RT1 User s Manual Contents 1: Overview... 1 2: Terminal Specifications... 1 2-1: Standard Specifications... 1 2-2: Customer Defined Features:... 1 3: Terminal RS232C Communication Link Details...

More information

NetMedia 2x16 Serial LCD Display Module V1.5

NetMedia 2x16 Serial LCD Display Module V1.5 NetMedia 2x16 Serial LCD Display Module V1.5 Table of Contents: Pinout... 2 Interfacing... 3 LCD Control Codes... 4 Creating Custom Characters... 6 BasicX-24 Example Program:... 7 2x16 Specifications...

More information

Customer Pole Display. Model: WD-304 Version: 1.12

Customer Pole Display. Model: WD-304 Version: 1.12 Customer Pole Display Model: WD-304 Version: 1.12 INDEX 1 FEATURES... 3 2 GENERAL SPECIFICATIONS... 4 3 UNPACKING... 5 3.1 PARTS LIST (WITH BASE PCB)... 5 3.2 PARTS LIST (WITHOUT BASE PCB)... 6 4 CONFIGURATION...

More information

)$4 DERXW (6& 326 [Format] [Range] [Default] [Description] The name of the command. The code sequence. [ ]k indicates the contents of the [ ] should be repeated k times. Gives the allowable ranges,

More information

Section Description DIP Switch Extension Bus Port Port for Microcontroller Port

Section Description DIP Switch Extension Bus Port Port for Microcontroller Port 1. Upto 256 RC SERVOs can be connected together using Serial Lines. 2. Angle and speed can be set. Angle and speed can be set independently set for each SERVO. 3. 4800bps or 9600 bps baud rate are supported

More information

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

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

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

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

Parallax Serial LCD 2 rows x 16 characters Non-backlit (#27976) 2 rows x 16 characters Backlit (#27977) 4 rows x 20 characters Backlit (#27979)

Parallax Serial LCD 2 rows x 16 characters Non-backlit (#27976) 2 rows x 16 characters Backlit (#27977) 4 rows x 20 characters Backlit (#27979) 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Educational: www.stampsinclass.com

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

Page 1 of 7. Samtron/Samsung 20S204DA2

Page 1 of 7. Samtron/Samsung 20S204DA2 Page 1 of 7 Samtron/Samsung 20S204DA2 Disclaimer This documentation based on try & error and should never be treated as official documentation. There is no guarantee that information listed in this document

More information

Parallax Serial LCD 2 rows x 16 characters Non-backlit (#27976) 2 rows x 16 characters Backlit (#27977)

Parallax Serial LCD 2 rows x 16 characters Non-backlit (#27976) 2 rows x 16 characters Backlit (#27977) 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Educational: www.stampsinclass.com

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

BV4542. I2C or Serial 16x2 with Keypad interface

BV4542. I2C or Serial 16x2 with Keypad interface BV4543 I2C or Serial 16x2 with Keypad interface Date Firmware Revision February 2018 Preliminary 11 Feb. 2018 1.1.1 Updated how serial works 16 Feb. 2018 1.1.3 Sleep updated Introduction This is an I2C

More information

Crystalfontz Technology * PRELIMINARY * 20x4 and 16x2 intelligent serial interface display command set

Crystalfontz Technology * PRELIMINARY * 20x4 and 16x2 intelligent serial interface display command set Crystalfontz Technology * PRELIMINARY * 20x4 and 16x2 intelligent serial interface display command set This document corresponds with beta code v0.7. Please contact Brent Crosby at (509) 291-3514, (888)

More information

Document: Datasheet Date: 22-Mar-11 Model #: 3679 Product s Page:

Document: Datasheet Date: 22-Mar-11 Model #: 3679 Product s Page: Email: info@sunrom.com Visit us at http://www.sunrom.com Document: Datasheet Date: -Mar- Model #: 79 Product s Page: www.sunrom.com/p-0.html ST79 - Infrared remote control decoder NEC The main function

More information

NetMedia 2x16 Serial LCD Display Module V1.2

NetMedia 2x16 Serial LCD Display Module V1.2 NetMedia 2x16 Serial LCD Display Module V1.2 RS232 compatible serial interface (2400 & 9600 baud selectable) Externally selectable serial polarities (Inverted & Non-Inverted) Serially controllable contrast

More information

Message Display Operator Panel. UCT-33/36 Industrial Terminal. Manual 32.00

Message Display Operator Panel. UCT-33/36 Industrial Terminal. Manual 32.00 BRODERSEN Message Displays/Operator Panels Message Display Operator Panel UCT-33/36 Industrial Terminal Manual 32.00 Brodersen Controls A/S. Betonvej 0. DK-4000 Roskilde. Denmark. Tel (+45) 46 74 00 00.

More information

UniOP VT100 Terminal Emulation - Ver. 3.16

UniOP VT100 Terminal Emulation - Ver. 3.16 UniOP VT100 Terminal Emulation - Ver. 3.16 This tech note describes the operation of the VT100 emulation software on UniOP. This document is a short reference for VT100 Terminal Emulation software. It

More information

Integrated Serial LCD Module (ILM-216)

Integrated Serial LCD Module (ILM-216) ILM-216 v1.2 07/00 pg 1 Integrated Serial LCD Module (ILM-216) The ILM-216 combines an LCD and microcontroller into a compact module for user-interface applications. A 2-line by 16-character LCD with supertwist

More information

SLCD1-IC Serial LCD Processor

SLCD1-IC Serial LCD Processor SLCD1-IC Serial LCD Processor Diagram 1: LCD Pin 13 LCD Pin 14 1 2 18 17 LCD Pin 12 LCD Pin 11 N/C 3 16 8 MHz Osc DC 4 15 8 MHz Osc Ground 5 14 DC Serial Input True/Inverted 6 7 13 12 LCD Pin 6 LCD Pin

More information

C1098 JPEG Module User Manual

C1098 JPEG Module User Manual C1098 JPEG Module User Manual General Description C1098 is VGA camera module performs as a JPEG compressed still camera that can be attached to a wireless or PDA host. Users can send out a snapshot command

More information

Embedded Modbus TCP Module GS11-MT. User Manual REV 1.1. SST Automation.

Embedded Modbus TCP Module GS11-MT. User Manual REV 1.1. SST Automation. Embedded Modbus TCP Module GS11-MT User Manual REV 1.1 SST Automation E-mail: SUPPORT@SSTCOMM.COM WWW.SSTCOMM.COM Catalog 1 About the Embedded Module... 4 1.1 General...4 1.2 Features... 4 1.3 Specifications...4

More information

Mounting Dimensions / Viewing 2 Mounting Options 3. Wiring Configuration 4. Quick Set up Procedure 5. Changing Intensity 6.

Mounting Dimensions / Viewing 2 Mounting Options 3. Wiring Configuration 4. Quick Set up Procedure 5. Changing Intensity 6. Section Mounting Dimensions / Viewing 2 Mounting Options 3 Section 2 Wiring Configuration 4 Section 3 Quick Set up Procedure 5 Section 4 Changing Intensity 6 Section 5 Option Summary 7 Section 6 Option

More information

Cwlinux Limited CW1602. CW1602 Datasheet. Revision 1.0 1

Cwlinux Limited CW1602. CW1602 Datasheet. Revision 1.0 1 CW1602 Datasheet Revision 1.0 1 CW1602 Datasheet by Cwlinux Limited Published August 14, 2013 Copyright 2013 Cwlinux Limited, All rights reserved. Cwlinux Limited reserves the right to make changes without

More information

Graphical LCD Display Datasheet EB

Graphical LCD Display Datasheet EB Graphical LCD Display Datasheet EB043-00-1 Contents 1. About this document... 2 2. General information... 3 3. Board layout... 6 4. Testing this product... 7 5. Circuit description... 8 Appendix 1 Circuit

More information

Beijer Electronics AB 2000, MA00453,

Beijer Electronics AB 2000, MA00453, VT100 emulation This manual presents installation and handling of the driver VT100 to the terminals in the E-series. The functionality in the E-terminals and in MAC Programmer+ are described in the E-manual.

More information

ACS-LCD-128x64. LCD Graphic Display Terminal. General Description. Features. Typical Applications. Specifications. 22-Feb-08

ACS-LCD-128x64. LCD Graphic Display Terminal. General Description. Features. Typical Applications. Specifications. 22-Feb-08 6 2 3 3 E. S a w g ra s s R d S a ra s o ta, F L. 3 4 2 4 0 (9 4 1 )3 7 7-5 7 7 5 F A X(9 4 1 )3 7 8-4 2 2 6 www.acscontrol.com 22-Feb-08 ACS-LCD-128x64 LCD Graphic Display Terminal General Description

More information

1602 SMART LCD DISPLAY MODULE HCMODU0122

1602 SMART LCD DISPLAY MODULE HCMODU0122 62 SMART LCD DISPLAY MODULE HCMODU22 Revision.. DISCLAIMER This document is provided "as is". Hobby Components Ltd makes no warranties, whether express, implied or statutory, including, but not limited

More information

RS-422 Code-Operated Switches

RS-422 Code-Operated Switches JUNE 2000 SW421A-R2 SW422A-R2 RS-422 Code-Operated Switches COS/4 TEXT TRANSPARENT GRAPHICS MODE RESET ST LO CUSTOMER SUPPORT INFORMATION Order toll-free in the U.S. 24 hours, 7 A.M. Monday to midnight

More information

If the display shift operation is used on a 20 x 4 display, the addressing is shifted as follows:

If the display shift operation is used on a 20 x 4 display, the addressing is shifted as follows: If the display shift operation is used on a 2 x 4 display, the addressing is shifted as follows: Left Shift Column 2 3... 8 9 2 line 2 3 2 3 4 line 2 4 42 43 52 53 54 line 3 5 6 7 26 27 28 line 4 55 56

More information

VC-C50i COMMUNICATION CAMERA PROGRAMMER'S MANUAL

VC-C50i COMMUNICATION CAMERA PROGRAMMER'S MANUAL VC-C50i COMMUNICATION CAMERA PROGRAMMER'S MANUAL Contents 1. Getting Started... 6 2. Connection with your Computer... 6 2.1 Connection... 6 2.2 Connector & Pin Assignment... 7 3. Communication Format...

More information

REV: PAGE: REVISION DESCRIPTION APPR: DATE: A ALL Released to production GRW 6/17/94

REV: PAGE: REVISION DESCRIPTION APPR: DATE: A ALL Released to production GRW 6/17/94 PAGE: REVISION DESCRIPTION APPR: DATE: A ALL Released to production GRW 6/17/94 B 5 Maximum component height was 10.5mm; Removed through hole crystal note and dimension; GRW 3/23/95 Released to production

More information

STEPware-100 Operations Manual

STEPware-100 Operations Manual STEPware-100 Operations Manual 1 STEPware-100 Operations Manual Your Industrial Control Solutions Source www.maplesystems.com Maple STEPware100 Systems, Operations Inc. Manual 808 134 th St. SW, Suite

More information

BV4511. VT100 Display Controller. Product specification. Aug 2009 V0.a. ByVac Page 1 of 10

BV4511. VT100 Display Controller. Product specification. Aug 2009 V0.a. ByVac Page 1 of 10 Product specification Aug 2009 V0.a ByVac Page 1 of 10 Contents 1. Introduction...3 2. Features...3 3. Physical Specification...3 3.1. Serial Interface...3 3.2. Connection Examples...4 3.3. Multiple Displays...4

More information

BASIC SERIAL COMMAND FUNCTIONAL SPECIFICATIONS PLV-WF20

BASIC SERIAL COMMAND FUNCTIONAL SPECIFICATIONS PLV-WF20 BASIC SERIAL FUNCTIONAL SPECIFICATIONS PLV-WF20 Ver.1.00 SANYO Electric Co., Ltd Personal Mobile Group DI Company Projector Business Division Contents 1 Overview...4 2 Serial Interface Specification...4

More information

LCD0821. Technical Manual. Revision 3.0. PCB Revision: 2.0 or Higher. Firmware Revision: 5.0 or Higher

LCD0821. Technical Manual. Revision 3.0. PCB Revision: 2.0 or Higher. Firmware Revision: 5.0 or Higher LCD0821 Including LCD0821 Technical Manual Revision 3.0 PCB Revision: 2.0 or Higher Firmware Revision: 5.0 or Higher Revision History Revision Date Description Author 3.0 May 7, 2013 Initial Release Clark

More information

LCD4041. User Manual. LCD4041 rev 1 1

LCD4041. User Manual. LCD4041 rev 1 1 LCD4041 User Manual LCD4041 rev 1 1 Table of Contents 1. Introduction... 3 1.1 What it Does... 3 1.2 What it Does Not Do... 3 1.3 Setup for Testing... 3 1.4 Trying Out your LCD4041... 4 1.5 Manual Override...

More information

One station Impact Printer. Model: WP-300 Version : 1.03

One station Impact Printer. Model: WP-300 Version : 1.03 One station Impact Printer Model: WP-300 Version : 1.03 INDEX 1. GENERAL SPECIFICATION... 2 1.1 DESCRIPTION... 2 1.2 CHARACTERISTICS... 2 1.3 ACCESSORIES... 2 2. MAIN SPECIFICATION... 3 3. ILLUSTRATION...

More information

PD26xx/PD23xx/PD28xx Series Command Detail Manual

PD26xx/PD23xx/PD28xx Series Command Detail Manual PD26xx/PD23xx/PD28xx Series Command Detail Manual TABLE OF CONTENTS COMMEND EMULATION................................. 3-1 GENERAL CONCEPT.................................. 3-1 ADM EMULATION MODE..............................

More information

USB-COMi-TB USB to Industrial Single RS-422 / 485 Adapter Manual. Specifications and Features

USB-COMi-TB USB to Industrial Single RS-422 / 485 Adapter Manual. Specifications and Features USB-COMi-TB USB to Industrial Single RS-422 / 485 Adapter Manual The USB-COMi-TB USB-to-Industrial Single RS-422/485 Adapter is designed to make industrial communication port expansion quick and simple.

More information

9. FUNCTION MENU SETTINGS -TION FUNCTION DESCRIPTION DEFAULT. VALUE F0 H-L SEt Lo Set a value for the Low

9. FUNCTION MENU SETTINGS -TION FUNCTION DESCRIPTION DEFAULT. VALUE F0 H-L SEt Lo Set a value for the Low ROW Weighing Scale CONTENTS 1. INTRODUCTION 1 2. KEY DESCRIPTIONS 1 3. BASIC OPERATION.. 2 3.1 Zeroing the display..2 3.2 Taring. 2 4. CHECK-WEIGHING..3 4.1 About check-weighing 3 4.2 Set limits 4 4.3

More information

Model:UT-8814 USB/RS-232 Commercial interface converter. Instruction Manual

Model:UT-8814 USB/RS-232 Commercial interface converter. Instruction Manual Model:UT-8814 USB/RS-232 Commercial interface converter Instruction Manual Contents 1. Overview....3 2. Main Features...3 3. Hardware installation and application....3 4. Performance parameters... 4 5.

More information

AMS COCKPIT USERS GUIDE. AMS Cockpit Version 1.1 USERS GUIDE

AMS COCKPIT USERS GUIDE. AMS Cockpit Version 1.1 USERS GUIDE AMS COCKPIT USERS GUIDE Table of Contents AMS Cockpit Version 1.1 USERS GUIDE Revision Date: 1/15/2010 A d v a n c e d M i c r o S y s t e m s, I n c. w w w. s t e p c o n t r o l. c o m i Table of Contents

More information

interface serially with the machine (through RS-232), 25-pin connectors

interface serially with the machine (through RS-232), 25-pin connectors Terminals Terminal Hardware Terminals are of three types: interface serially with the machine (through RS-232), 25-pin connectors memory-mapped terminals network terminals Serial-Line Terminals UARTs (Universal

More information

MCS-51 Serial Port A T 8 9 C 5 2 1

MCS-51 Serial Port A T 8 9 C 5 2 1 MCS-51 Serial Port AT89C52 1 Introduction to Serial Communications Serial vs. Parallel transfer of data Simplex, Duplex and half-duplex modes Synchronous, Asynchronous UART Universal Asynchronous Receiver/Transmitter.

More information

IO Expansion Shield User Manual

IO Expansion Shield User Manual IO Expansion Shield User Manual 1 Features 3-pin & 4-pin sensor interfaces, supports connecting sensors directly without complicate custom connections XBee module connector WIFI-LPT100 wireless module

More information

DSP860 Operation Manual

DSP860 Operation Manual DSP860 Operation Manual 1. Information 2. Introduction 3. Installation 4. Pin Assignment 5. DIP Switch Setting 6. Character Tables 7. Software Control (Command List) 8. Specifications 9. Instruction of

More information

PIC-I/O Multifunction I/O Controller

PIC-I/O Multifunction I/O Controller J R KERR AUTOMATION ENGINEERING PIC-I/O Multifunction I/O Controller The PIC-I/O multifunction I/O controller is compatible with the PIC-SERVO and PIC-STEP motor control modules and provides the following

More information

Sequential Event Recorder

Sequential Event Recorder DESCRIPTION Sequential Event Recorder Product Specifications and Installation Data The Sequential Event Recorder (SER) is an intelligent Genius I/0 block that resides directly on the Genius LAN. The primary

More information

DSP840 Operation Manual Version 3.0

DSP840 Operation Manual Version 3.0 DSP840 Operation Manual Version 3.0 1. Information 2. Introduction 3. Installation 4. Pin Assignment 5. DIP Switch Setting 6. Character Tables 7. Software Control (Command List) 8. Specifications 9. Instruction

More information

Sender Receiver Sender

Sender Receiver Sender EEE 410 Microprocessors I Spring 04/05 Lecture Notes # 19 Outline of the Lecture Interfacing the Serial Port Basics of Serial Communication Asynchronous Data Communication and Data Framing RS232 and other

More information

User s Manual Models CD5220 / CD6220. Vacuum Fluorescent Customer Display

User s Manual Models CD5220 / CD6220. Vacuum Fluorescent Customer Display User s Manual Models CD5220 / CD6220 Vacuum Fluorescent Customer Display INDEX 1. FEATURES...3 2. TYPE CLASSIFICATION...4 3. GENERAL SPECIFICATIONS...5 4. INTERFACE SPECIFICATIONS...6 5. FUNCTION SELECTION...9

More information

D-500s Indicator D LED. User Instructions. English Issue September SangR. Page 2. User s manual of Sang D-500s LED

D-500s Indicator D LED. User Instructions. English Issue September SangR. Page 2. User s manual of Sang D-500s LED D-500s Indicator D - 500 LED User Instructions English 8921-004210 Issue September 2010 1 2-2 0 1 0 D 6 0 0 4 6 7 5 Page 2 D-500s Indicator Page 2 Table of Content Section 1: Introduction. 1.1 Introduction

More information

8 Port USB to RS- 232/422/485 Octal Adapter. Product Manual. Coolgear, Inc. Version 1.1 April 2018 Model Number: USB-8COMi-RM.

8 Port USB to RS- 232/422/485 Octal Adapter. Product Manual. Coolgear, Inc. Version 1.1 April 2018 Model Number: USB-8COMi-RM. 8 Port USB to RS- 232/422/485 Octal Adapter Product Manual Coolgear, Inc. Version 1.1 April 2018 Model Number: USB-8COMi-RM 2 USB-8COMi-RM Product Manual Revision History Revision Date Author Comments

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

VFD CUSTOMER DISPLAY USER S MANUAL

VFD CUSTOMER DISPLAY USER S MANUAL VFD CUSTOMER DISPLAY USER S MANUAL CONTENTS Contents... 1 Features... 2 Specifications - 9mm... 3 Block Diagram... 6 Interface Connections... 7 Usage Notes... 9 Switch Settings... 11 Firich Command Set

More information

Innovati s Bluetooth 100M Universal Wireless Bluetooth Module

Innovati s Bluetooth 100M Universal Wireless Bluetooth Module Innovati s Bluetooth 100M Universal Wireless Bluetooth Module Bluetooth 100M module is a simple to use Bluetooth module, command control through a simple UART Tx and Rx which are connected to other Bluetooth

More information

User Manual. Multi-display Control Module Protocol MCS. dedicated KVM switch and rackmount screen technology

User Manual. Multi-display Control Module Protocol MCS. dedicated KVM switch and rackmount screen technology dedicated KVM switch and rackmount screen technology User Manual Multi-display Control Module Protocol MCS Multi-display control solution Designed and manufactured by Austin Hughes 751 Contents < Part.

More information

C1182 Video Compression Module User Manual. Release Note: 1 st Release : Aug 01, 2012

C1182 Video Compression Module User Manual. Release Note: 1 st Release : Aug 01, 2012 C1182 Video Compression Module User Manual Release Note 1 st Release Aug 01, 2012 General Description This is a series of camera modules which perform video compression and output video stream through

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

BASIC Stamp Windows Interface (v1.1)

BASIC Stamp Windows Interface (v1.1) BASIC Stamp Windows Interface (v1.1) FEATURES: GENERAL: Win95/98/Me/NT 4.0/2000 compatible. This software runs under Windows 95 and 98 (both new and upgrade versions), as well as Windows NT 4.0 and Windows

More information

This 4-port RS-422/485 Adapter is provided with an external switching power adapter in the package.

This 4-port RS-422/485 Adapter is provided with an external switching power adapter in the package. USB-4COMi-M USB to Quad RS-422/485 to Serial Adapter Manual The USB to Industrial Quad RS-422/485 Adapter is designed to make industrial communication port expansion quick and simple. Connecting to a USB

More information

TCPIP LIBRARY Version 1.5 E and more Documentation: 14/10/2010

TCPIP LIBRARY Version 1.5 E and more Documentation: 14/10/2010 1171 Notre-Dame W. # 100 Victoriaville, Qc G6P 7L1 Telephone: (819) 751-0095 Fax: (819) 751-1292 TCPIP LIBRARY Version 1.5 E and more Documentation: 14/10/2010 Use this software with the product : LBC-02/IP

More information

VC-C4 COMMUNICATION CAMERA PROGRAMMER'S MANUAL

VC-C4 COMMUNICATION CAMERA PROGRAMMER'S MANUAL VC-C4 COMMUNICATION CAMERA PROGRAMMER'S MANUAL Contents 1. Getting Started... 5 2. Connection with your Computer... 5 2.1 Connection... 5 2.2 Connector & Pin Assignment... 5 3. Communication Format...

More information

LCM-100 LCD Module User s Manual

LCM-100 LCD Module User s Manual LCM-100 LCD Module User s Manual Copyright This document is copyrighted, 2002, by Advantech Co, Ltd All rights are reserved Advantech Co, Ltd reserves the right to make improvements to the products described

More information

J2 LCM Customer Display. Manual

J2 LCM Customer Display. Manual J2 LCM Customer Display Manual July 2012 Contents LCM Customer Display... 3 Overview... 3 Customer Display Configureation... 4 Port Settings... 4 CD Settings... 5 Emulation Mode... 5 Character Sets...

More information

XR-200 MINI DOT IMPACT PRINTER PRODUCT SPECIFICATION DATE : MAY 3, 2004 MANUAL REVISION 2.0

XR-200 MINI DOT IMPACT PRINTER PRODUCT SPECIFICATION DATE : MAY 3, 2004 MANUAL REVISION 2.0 XR-200 MINI DOT IMPACT PRINTER PRODUCT SPECIFICATI DATE : MAY 3, 2004 MANUAL REVISI 2.0 Features Dip Switch Configuration Emulation mode, communications mode, baud rate, serial/parallel handshake, and

More information

Application Note BDLxxxx RS232 SERIAL INTERFACE COMMUNICATION PROTOCOL (SICP V1.82)

Application Note BDLxxxx RS232 SERIAL INTERFACE COMMUNICATION PROTOCOL (SICP V1.82) Application Note BDLxxxx RS232 SERIAL INTERFACE COMMUNICATION PROTOCOL (SICP V1.82) Table of Contents 1. INTRODUCTION... 1 1.1 PURPOSE... 1 1.2 DEFINITIONS, ABBREVIATIONS AND ACRONYMS... 1 2. COMMAND PACKET

More information

Vacuum Fluorescent Customer Display. Model: WD-2030 XXXX Version: 1.10

Vacuum Fluorescent Customer Display. Model: WD-2030 XXXX Version: 1.10 Vacuum Fluorescent Customer Display Model: WD-2030 XXXX Version: 1.10 INDEX 1. FEATURES... 3 2. GENERAL SPECIFICATIONS... 4 3. UNPACKING AND CHECKING THE PARTS... 5 3.1 PARTS LIST (WITH BASE PCB)... 5

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

PCI Express 16-Port Serial I/O Cards

PCI Express 16-Port Serial I/O Cards PCI Express 16-Port Serial I/O Cards The PCIe-1600 PCI Express 16-port serial I/O card is a plug & play high-speed serial I/O expansion card for PCI Express bus. Connecting to a PCI Express bus on your

More information

VFD Series Vacuum Fluorescent Customer Display Instruction Manual ESC/POS commands Sets Supports

VFD Series Vacuum Fluorescent Customer Display Instruction Manual ESC/POS commands Sets Supports VFD Series Vacuum Fluorescent Customer Display Instruction Manual ESC/POS commands Sets Supports Ver. 1.1 CONTENTS I. PRODUCT OVERVIEW... 3 Specification... 4 Package... 8 II. INSTALLING YOUR VFD CUSTOMER

More information

Datapanel. VT100 Terminal Emulator for Datapanels. Operator Interface Products. User's Manual

Datapanel. VT100 Terminal Emulator for Datapanels. Operator Interface Products. User's Manual Datapanel Operator Interface Products VT100 Terminal Emulator for Datapanels User's Manual GFK-1698 July 1999 Warnings, Cautions, and Notes as Used in this Publication GFL-002 Warning Warning notices are

More information

Generic RS232 protocol

Generic RS232 protocol Generic RS232 protocol Table of content 1 Introduction... 2 2 Description... 2 2.1 Hardware specification... 2 2.2 Communication Setting... 2 2.3 Command Message Reference... 3 3 Protocol 1 : with ID...

More information

LK User Manual. LK rev 4 1

LK User Manual. LK rev 4 1 LK162-12 User Manual LK162-12 rev 4 1 Table of Contents 1. Introduction...5 1.1 What it Does...5 1.2 What it Does Not Do...5 1.3 Keypad Interface...5 1.4 Setup for Testing...5 1.5 Trying Out your LK162-12...6

More information

Introduction 1. Liquid crystal display (16 characters by 2 rows) Contrast dial: turn the dial to adjust the contrast of the display (see page 5)

Introduction 1. Liquid crystal display (16 characters by 2 rows) Contrast dial: turn the dial to adjust the contrast of the display (see page 5) Welcome to the GENIE Serial LCD module. Introduction 1 The GENIE Serial LCD module allows GENIE-based projects to display messages on a 16 character by 2 row liquid crystal display (LCD). This worksheet

More information

SM125 System SM125-IC 125 KHz RFID Chip SM125-M1 125 KHz RFID Module SM125-EK Evaluation Kit SMRFID 3.0 Software USER MANUAL

SM125 System SM125-IC 125 KHz RFID Chip SM125-M1 125 KHz RFID Module SM125-EK Evaluation Kit SMRFID 3.0 Software USER MANUAL SM125 System SM125-IC 125 KHz RFID Chip SM125-M1 125 KHz RFID Module SM125-EK Evaluation Kit SMRFID 3.0 Software USER MANUAL 2 1. INTRODUCTION 4 1.1 125 KHz RFID Systems 5 1.2 Evaluation Board Layout View

More information

BASIC SERIAL COMMAND FUNCTIONAL SPECIFICATIONS PLC-XF47. SANYO Electric Co., Ltd Personal Mobile Group DI Company Projector Business Division

BASIC SERIAL COMMAND FUNCTIONAL SPECIFICATIONS PLC-XF47. SANYO Electric Co., Ltd Personal Mobile Group DI Company Projector Business Division BASIC SERIAL FUNCTIONAL SPECIFICATIONS PLC-XF47 SANYO Electric Co., Ltd Personal Mobile Group DI Company Projector Business Division Contents 1 Overview...4 2 Serial Interface Specification...4 2.1 Transfer

More information

Lab Overview. Lab Details. ECEN 4613/5613 Embedded System Design Week #7 Spring 2005 Lab #4 2/23/2005

Lab Overview. Lab Details. ECEN 4613/5613 Embedded System Design Week #7 Spring 2005 Lab #4 2/23/2005 ECEN 4613/5613 Embedded System Design Week #7 Spring 2005 Lab #4 2/23/2005 Lab Overview In this lab assignment, you will do the following: Add a serial EEPROM and an LCD to the hardware developed in Labs

More information

TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT

TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT TA0139 USER MANUAL ARDUINO 2 WHEEL DRIVE WIRELESS BLUETOOTH ROBOT KIT I Contents Overview TA0139... 1 Getting started: Arduino 2 Wheel Drive Wireless Bluetooth Robot Kit using Arduino UNO... 1 2.1. What

More information

Excel & Business Math Video/Class Project #01 Introduction to Excel. Why We Use Excel for Math. First Formula.

Excel & Business Math Video/Class Project #01 Introduction to Excel. Why We Use Excel for Math. First Formula. Excel & Business Math Video/Class Project #01 Introduction to Excel. Why We Use Excel for Math. First Formula. Topics Covered in Video: 1) USB Drive to store files from class... 2 2) Save As to Download

More information

DN120 DeviceNet Gateway User Manual

DN120 DeviceNet Gateway User Manual DN120 DeviceNet Gateway User Manual DN120 PN 84-210010 Rev A Table of Contents CHAPTER 1 OVERVIEW... 4 CHAPTER 2 INSTALLATION... 5 MOUNTING... 5 WIRING... 6 DeviceNet Interface... 6 Serial Channel Interface...

More information

ACS. 128 x 64 LCD. Display Terminal

ACS. 128 x 64 LCD. Display Terminal ACS 128 x 64 LCD Display Terminal User's Manual 6/14/2011 5:33 PM 6233 E. S awgrass R d S arasota, F L. 34240 (941)377-5775 F AX (941)378-4226 www.acscontrol.com Table of Contents Table of Contents...

More information

PCI Express 4-Port Industrial Serial I/O Cards

PCI Express 4-Port Industrial Serial I/O Cards PCI Express 4-Port Industrial Serial I/O Cards The PCIe-400i and PCIe-400i-SI PCI Express 4-port industrial serial I/O cards are plug & play high-speed serial I/O expansion cards for the PCI Express bus.

More information

IM3523 IM3533 IM IM3536 LCR METER IM3570 IM7580 IM3590 CHEMICAL IMPEDANCE ANALYZER IMPEDANCE ANALYZER. Communication Instruction Manual

IM3523 IM3533 IM IM3536 LCR METER IM3570 IM7580 IM3590 CHEMICAL IMPEDANCE ANALYZER IMPEDANCE ANALYZER. Communication Instruction Manual Communication Instruction Manual IM3523 IM3533 IM3533-01 IM3536 LCR METER IM3570 IM7580 IMPEDANCE ANALYZER IM3590 CHEMICAL IMPEDANCE ANALYZER November 2014 Revised edition 6 IM3570A983-06 14-11H i Contents

More information

EWAVE Inc Gracefield Ln. Dallas, Texas (972)

EWAVE Inc Gracefield Ln. Dallas, Texas (972) EWAVE Inc. 7419 Gracefield Ln. Dallas, Texas 75248 (972) 248-2931 www.electrowave.com STAMPER User s Manual Version 1.0 Ewave Radio Modems covered in this manual: STAMPER INTRODUCTION... 3 1.1 FEATURES

More information

BeagleBone Black USB Expansion RS232 Module Cape Coolgear, Inc. Version 1.1 September 2017 Model Number:

BeagleBone Black USB Expansion RS232 Module Cape Coolgear, Inc. Version 1.1 September 2017 Model Number: BeagleBone Black USB Expansion RS232 Module Cape Product Manual Coolgear, Inc. Version 1.1 September 2017 Model Number: USB-2COM-BB 2 USB-2COM-BB Product Manual Revision History Revision Date Author Comments

More information

GP1 LCD RS232 Terminal Kit 2003 by AWC

GP1 LCD RS232 Terminal Kit 2003 by AWC GP1 LCD RS232 Terminal Kit 2003 by AWC AWC 310 Ivy Glen League City, TX 77573 (281) 334-4341 http://www.al-williams.com/awce.htm V1.2 30 Aug 2003 Table of Contents Overview...1 If You Need Help...1 Building...1

More information

USB-16COMi-M 16-Port RS-422/485 USB Serial Adapter User Manual. Features and Specifications. Power Supply

USB-16COMi-M 16-Port RS-422/485 USB Serial Adapter User Manual. Features and Specifications. Power Supply USB-16COMi-M 16-Port RS-422/485 USB Serial Adapter User Manual The USB to industrial 16-Port RS-422/485 Adapter is designed to make serial port expansion quick and simple. Connecting to a USB port on your

More information

Lab-3: LCDs Serial Communication Analog Inputs Temperature Measurement System

Lab-3: LCDs Serial Communication Analog Inputs Temperature Measurement System Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-3: LCDs Serial Communication Analog Inputs Temperature Measurement System Ahmed Okasha okasha1st@gmail.com

More information