Terminal Interface Module Programming Manual

Size: px
Start display at page:

Download "Terminal Interface Module Programming Manual"

Transcription

1 Page 1 of 6 The is intended to operate as a LCD terminal over an RS232 interface: 9600 baud, 8 data bits and Even Parity. Module ID: Is set from the DIP switches 1 to. Terminal keys, mapped to ASCII: LCD ASCII LCD ASCII LCD ASCII LCD ASCII A B HELP = 1 ABC 1 2 DEF 2 3 GHI 3 MENU? JKL 5 MNO 5 6 PQR 6 END > 7 STU 7 8 VWX 8 9 YZ 9 : ON ; 0 0 OFF < These ASCII characters sent to the terminal interface via the RS232 will drive the controller in exactly the same way key presses on a LCD terminal would. If plugged into an ANSI compatible terminal, such as Hyper Terminal the text display should appear as it would on the LCD display. This is because it uses ANSI terminal escape sequences to control the display format and cursor control. Following is an example of what sort of information is sent to the terminal and a brief description of the ANSI interfacing. Display text has embedded escape sequences: FF$[H$[J$[?25lAreas: $[2H$[J001 -> nnnnnnnnnul Displayed on an ANSI terminal this appears as it would on the LCD: Areas: > nnnnnnnn FF, NUL $[H, $[J, $[?25l, $[2H : single control characters, Form Feed and Null where FF is (12, 0x0C) and NUL is (0, 0x00) : escape control sequences where $ is the ESC control character (27, 0x1B) The control characters Form Feed and Null are markers for the start of a message and the end of a message respectively. A Form Feed is sent every time an entirely new page (or form) of information is to be displayed. A Null is sent once at the end of each page of information. Characters may be received after a Null. These may be updates to the last page sent, such as editing settings. The escape sequences contain information about how to display the text and the cursor. While editing, the cursor can move around the display. Further updates to the text displayed on the current page can be sent as key-presses are sent to the controller. Terminal Interface Program.doc Page 1 28 Jan. 05

2 Page 2 of 6 Some example messages from the Terminal interface Power on FF$[H$[J$[?25lTI3000 V1.0$[2H$[JNo: 0$[0q First message from controller FF$[H$[J$[?25lAreas: $[2H$[J001 -> nnnnnnnnnul Some example uses of the Terminal interface Check the date and time Key Response MENU (? ) FF$[H$[J$[?25lSelect Option$[2H$[J1=Review 2=Info 3=Time =DVR Access/Search 5=DVR AdminNUL 3 FF$[H$[J$[?25lThursday$[1;12H$[?25hNov25 $[2H$[J200$[2;9H$[?25hJ1:9:25NUL FF$[H$[J$[?25lThursday$[1;12H$[?25hNov25 $[2H$[J200$[2;9H$[?25hJ1:9:26NUL FF$[H$[J$[?25lThursday$[1;12H$[?25hNov25 $[2H$[J200$[2;9H$[?25hJ1:9:27NUL END ( > ) FF$[H$[J$[?25lAreas: $[2H$[J001 -> nnnnnnnnnul Terminal Interface Program.doc Page 2 28 Jan. 05

3 Page 3 of Turn on the first Auxiliary Key Response FF$[H$[J$[?25lCode : # # FF$[H$[J$[?25lGood Afternoon$[2H$[JINSTALLERNUL FF$[H$[J$[?25l** Main Menu **$[2H$[J0 = Area 2 On/Off 1=Info 2=Access 3=Isolate =Testing 5=Times 6= 7=Installer 8=Service 9=ControlNUL FF$[H$[J$[?25l** Test Menu ** $[2H$[J1=Inputs 2=Auxes 3=Sirens =Telecom 5=Cards 6=Memory 7=Ports 8=Power 9=VoltsNUL FF$[H$[J$[?25lAux to Operate $[2H$[JC01:X01$[2;1H$[?25hJNUL FF$[H$[J$[?25lC01:X01 $[2H$[Jis Off. Press OnNUL ON ( ; ) FF$[H$[J$[?25lC01:X01 $[2H$[Jis On. Press OffNUL END ( > ) FF$[H$[J$[?25lAreas: $[2H$[J001 -> nnnnnnnn: 0NUL Terminal Interface Program.doc Page 3 28 Jan. 05

4 Page of Turn on this Terminal, Auxiliary 8 Key Response FF$[H$[J$[?25lCode : # # FF$[H$[J$[?25lGood Afternoon$[2H$[JINSTALLERNUL FF$[H$[J$[?25l** Main Menu **$[2H$[J0 = Area On/Off 1=Info 2=Access 3=Isolate =Testing 5=Times 6= 7=Installer 8=Service 9=ControlNUL FF$[H$[J$[?25l** Test Menu ** $[2H$[J1=Inputs 2=Auxes 3=Sirens =Telecom 5=Cards 6=Memory =Ports 8=Power 9=VoltsNUL FF$[H$[J$[?25lAux to Operate $[2H$[JC01:X01$[2;1H$[?25hJNUL S$[D T$[D Terminal Interface Program.doc Page 28 Jan. 05

5 Page 5 of 6 8 8$[D FF$[H$[J$[?25lT0:X08 $[2H$[Jis Off. Press OnNUL ON ( ; ) FF$[H$[J$[?25lT0:X08 $[2H$[Jis On. Press OffNUL$[0;3q END ( > ) FF$[H$[J$[?25lAreas: $[2H$[J001 -> nnnnnnnnnul Terminal Interface Program.doc Page 5 28 Jan. 05

6 Page 6 of 6 Standard derived from VT100 Programming references ANSI Compatible Mode Cursor Movement Commands Cursor forward (right) ESC [ C Cursor backward (left) ESC [ D Direct cursor addressing ESC [ Pl; Pc H Home cursor ESC [ H Pl = line number (default 0); Pc = column number (default 0) Erase In Display ESC [ J Cursor Control ESC [? 25 h ESC [? 25 l Erase from the active position to the end of the screen Cursor displayed Cursor invisible Programmable LEDs ESC [ Ps;Ps;...Ps q Ps = 0: All LEDs Off Ps = 1: LED1 (AUX6) on Ps = 2: LED2 (AUX7) on Ps = 3: LED3 (AUX8) on Ps = : LED (AUX2) on An ANSI compatible terminal will display the escape sequences according to the above standard specification. To see how this would appear, it is useful to use something like HyperTerminal, which is bundled with Microsoft Windows. Or one of many such applications designed to interface a PC to the vast legacy of ANSI compatible systems. Set up the terminal emulation application to configure the RS232 COM serial port to: 9600 baud, 8 data bits, Even Parity. Example terminal emulation programs: Download site Recommended product CRT Terminal Interface Program.doc Page 6 28 Jan. 05

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

Operating & ProgrammingGuide

Operating & ProgrammingGuide LCD Keypad Operating & ProgrammingGuide Arrowhead Alarm Products Ltd VERSION 2.03 Proudly Designed and Manufactured in New Zealand 1 CONTENTS Page No. INTRODUCTION 3 Introduction to the LCD Keypad 3 KEYPAD

More information

User s Manual. BCP-8000 Data Collector. Ver

User s Manual. BCP-8000 Data Collector. Ver User s Manual BCP-8000 Data Collector Ver.1 2011.02 Contents 1. Introduction... 1 1.1. Features... 1 1.2. Unpack... 1 1.3. Overview... 2 2. Keypad... 3 2.1. Function Keys... 3 2.2. FN Key + Numeric Key...

More information

Quick Installation Guide

Quick Installation Guide Quick Installation Guide For Bundles Featuring the QC4098 or QC4096 Network DVR 8 and 6 Channel H.64 Compression All-in-One DVRs with Variable CIF and D Recording Options PART - PACKAGE CONTENTS QC4098

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

User s Manual. Pan and Tilt Chimney Inspection Camera. Model No.: SD-1050I. Please read this manual carefully before using this product!

User s Manual. Pan and Tilt Chimney Inspection Camera. Model No.: SD-1050I. Please read this manual carefully before using this product! User s Manual _ Pan and Tilt Chimney Inspection Camera Model No.: SD-1050I Please read this manual carefully before using this product! 1 Welcome Thank you for choosing our Pan and Tilt Chimney Inspection

More information

SAS Certification Handout #6: Ch

SAS Certification Handout #6: Ch SAS Certification Handout #6: Ch. 16-18 /************ Ch. 16 ******************* /* Suppose we have numeric variables ModelNumber Price Weight Change and date variable Date, plus a string variable Designer

More information

420 Series RS232 only Encoder for Keypad Applications Application / Engineering Manual

420 Series RS232 only Encoder for Keypad Applications Application / Engineering Manual USA OFFICE UK OFFICE Suite 202 14 Bentinck Court 364 Pennsylvania Avenue, Bentinck Road Glen Ellyn West Drayton Illinois 60137 UB7 7RQ USA ENGLAND Tel +1 (630) 469 2981 Tel +44 (0) 1895 431421 www.keymat.com

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

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

Contents. List of Figures. SPIDriver Datasheet 1. 1 Overview 2. 2 Features 2. 3 Installation with Arduino 3

Contents. List of Figures. SPIDriver Datasheet 1. 1 Overview 2. 2 Features 2. 3 Installation with Arduino 3 SPIDriver Datasheet 1 Contents 1 Overview 2 2 Features 2 3 Installation with Arduino 3 4 Operation 4 4.1 ANSI escape codes......................... 5 4.2 High-resolution modes........................ 6

More information

Contents. Introduction Full Setting the System Part Setting the System (using Part 1)... 2

Contents. Introduction Full Setting the System Part Setting the System (using Part 1)... 2 TM C P 8 L L C D U S E R M A N UA L TM Contents Introduction............................ 1 Full Setting the System.................... 1 Part Setting the System (using Part 1)........ 2 Part Setting the

More information

Connecting your EYEsurv ESC-PTZ-600 to your DVR

Connecting your EYEsurv ESC-PTZ-600 to your DVR Connecting your EYEsurv ESC-PTZ-600 to your DVR Introduction: This guide will take you through each step in connecting your EYEsurv PTZ to your DVR allowing for full control and movement. Step 1: First

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

420 Series RS232 Encoder Engineering Manual. Contents NOTICE

420 Series RS232 Encoder Engineering Manual. Contents NOTICE Contents Contents...1 Product Overview...2 Communications Protocol...3 LCD Display...4 Part Ordering Details - Storm Products...6 Part Details - Other Hardware Required (depending on end application)...6

More information

Configuring RS 232 Communications with TheaterTouch Designer and the CM 232

Configuring RS 232 Communications with TheaterTouch Designer and the CM 232 December 2006 Configuring RS 232 Communications with TheaterTouch Designer and the CM 232 Introduction There are several pieces of information that you will need to successfully establish an RS 232 connection

More information

TECHNOLOGY, INC. ANAHEIM J CALIFORNIA FREEDOM AVE. [714]

TECHNOLOGY, INC. ANAHEIM J CALIFORNIA FREEDOM AVE. [714] TECHNOLOGY, INC. 165 FREEDOM AVE. ANAHEIM J CALIFORNIA 92801 [714] 992 2860 TABLE OF CONTENTS SECTION PAGE ONE 113 120 SPECIFICATION 1 TWO 113 120 FEATURES 3 THREE 113 120 OPERATION 5 FOUR PROGRAMMING

More information

Service Bulletin. (This bulletin and all other active bulletins are downloadable from our website at

Service Bulletin. (This bulletin and all other active bulletins are downloadable from our website at Bulletin 2003-17-ABDE Service Bulletin (This bulletin and all other active bulletins are downloadable from our website at www.frymaster.com/service.) Bulletin 2003-17-ABDE Page 1 of 5 Date: 01/30/2003

More information

Control. Chapter. 4 Command and Control Summary

Control. Chapter. 4 Command and Control Summary Chapter 4 Control This chapter describes the keypad presses and remote control commands required to use your Prima LT Plus 4 Command and Control Summary There are three ways to control the Prima LT Plus:

More information

SILENCING AN ALARM. When the alarm bell or siren is sounding, enter your user code or present your keyfob to your keypad.

SILENCING AN ALARM. When the alarm bell or siren is sounding, enter your user code or present your keyfob to your keypad. S Y S T E M U S E R G U I D E SILENCING AN ALARM When the alarm bell or siren is sounding, enter your user code or present your keyfob to your keypad. IS THIS A FALSE ALARM? YES NO displays. REAL ALARM

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

Quick Reference Guide

Quick Reference Guide Quick Reference Guide Zeus MFDs 2 4 6 5 7 8 10 1 11 CHART RADAR ECHO NAV INFO EN IN OUT 1MOB 2 ABC 4 GHI DEF 5 JKL 6 MNO 7 PQRS 8 TUV 9WXYZ STBY AUTO 0 9 12 1 PAGES 1 Direct Access Keys (DAK). Provide

More information

DataBridge Serial Multiplexer (SDR-MUX) User's Manual

DataBridge Serial Multiplexer (SDR-MUX) User's Manual DataBridge Serial Multiplexer (SDR-MUX) User's Manual Revision 1.0 1 May 2000 1 Getting Started 1.1 Getting Started To get started you will need the DataBridge SDR, SDR-ACDC power supply, serial cables,

More information

LifeLine Series. User Guide Px-100 Lifeline Paging Control Panel

LifeLine Series. User Guide Px-100 Lifeline Paging Control Panel Manual LifeLine Series User Guide Px-100 Lifeline Paging Control Panel The operation and functions described in this manual are available from Software Version Px100-001-01 onwards. 1 INTRODUCTION 1.1

More information

Quick Start Guide. Menu Structure. Startup and Shutdown. Using the Setup Wizard. DS-7300HI-S Series DVR

Quick Start Guide. Menu Structure. Startup and Shutdown. Using the Setup Wizard. DS-7300HI-S Series DVR Quick Start Guide DS-7300HI-S Series DVR Menu Structure The menu structure of the DS-7300HI-S Series DVR is as followed: 2. Select the Shutdown button. 3. Message Shutting Down will pop up 4. Turn off

More information

4CH MOBILE DVR OPERATING INSTRUCTIONS

4CH MOBILE DVR OPERATING INSTRUCTIONS 4CH MOBILE DVR OPERATING INSTRUCTIONS Before operating this set, please read these instructions completely The DVR needs to use SD card from Brand SAN DISK, the reading and Writing speed needs to reach

More information

HOW TO INSTALL E-LD TO E-xD USING CONNECTION TO USB CONSOLE

HOW TO INSTALL E-LD TO E-xD USING CONNECTION TO USB CONSOLE HOW TO INSTALL E-LD TO E-xD USING CONNECTION TO USB CONSOLE 1. Install the USB Drivers and connect a PC with a Terminal program (e.g. HyperTerminal) to the USB "Console" Port as instructed in the ENVIROMUX

More information

FD-011WU. 2D Barcode Reader User Guide V1.6CC

FD-011WU. 2D Barcode Reader User Guide V1.6CC FD-011WU 2D Barcode Reader User Guide V1.6CC Table of Contents 1 Getting Started... 1 1.1 Factory Defaults... 1 2 Communication Interfaces...2 2.1 TTL-232 Interface... 2 2.2 Baud Rate... 3 2.3 Data Bit

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

CA-101 Keyboard. User Manual. Version1.0

CA-101 Keyboard. User Manual. Version1.0 CA-101 Keyboard User Manual Version1.0 Thanks a lot for purchasing our product. If there is any question, please feel free to contact us. This manual may have something inaccurate in technology, unsuited

More information

COMMUNICATION WITH OTHER SERIAL DEVICES

COMMUNICATION WITH OTHER SERIAL DEVICES Application Bulletin: #169 Date: November 2009 BLACKBELT COMMUNICATIONS INTERFACE The setup and operation of the Sentinel BLACKBELT communication options are explained in Error! Reference source not found.,

More information

Cisco ISE Command-Line Interface

Cisco ISE Command-Line Interface This chapter provides information on the Cisco Identity Services Engine (Cisco ISE) command-line interface (CLI) that you can use to configure and maintain Cisco ISE. Cisco ISE Administration and Configuration

More information

HWUTES186/01436n (10 pages) PROCESSOR & PERIPHERAL BOARD TESTING

HWUTES186/01436n (10 pages) PROCESSOR & PERIPHERAL BOARD TESTING 80186 PROCESSOR & PERIPHERAL BOARD TESTING SUBJECT: MILNOR Micro-Processor and Peripheral Board Testing Procedures Using 80186 Processor and Serial Display This procedure will allow testing of the 186

More information

CANON FAX L1000 SIMPLIFIED GUIDE

CANON FAX L1000 SIMPLIFIED GUIDE CANON FAX L1000 SIMPLIFIED GUIDE CONTENTS SUPER G3 FAX-L1000 PAGE I To Register Sender s Identification 3 II Sending Documents 4 III Setting Up Speed Dialing A One-touch Speed Dial 5 B Coded Speed Dial

More information

3980xpi/3980/3900 V8.2 User Notes

3980xpi/3980/3900 V8.2 User Notes 3980xpi/3980/3900 V8.2 User Notes Contents What s New in Version 8.2........................................ 2 Reminders.................................................... 5 Determining if 3900 Has Hard

More information

TPNA-1000 Triple Play Network Analyzer

TPNA-1000 Triple Play Network Analyzer TPNA-1000 Triple Play Network Analyzer Section I: The Basics 1.1 1.2 THIS PAGE LEFT INTENTIONALLY BLANK Chapter 1 1. General Information Helpful Website The following website contains general information

More information

Accessing service menus

Accessing service menus Accessing service menus There are different test menus that can be accessed during POR to identify problems with the printer. Diagnostics Menu 1 2 ABC 4 GHI 7 PQRS * 5 JKL 8 TUV 0 3 DEF 6 MNO 9 WXYZ #

More information

Power Level Converter 3110 PC. C. Frame format The length of the frame is 26 bytes (compatible with FAB). The form is as the following:

Power Level Converter 3110 PC. C. Frame format The length of the frame is 26 bytes (compatible with FAB). The form is as the following: The protocol between 3645 A Family Power supply and PC Power supply can be connected to RS-232 interface by the DB9 plug on the back panel through the level switching circuit. The following instructions

More information

DS-1002KI/1003KI Keyboard User Manual

DS-1002KI/1003KI Keyboard User Manual DS-1002KI/1003KI Keyboard User Manual V1.0 Thanks a lot for purchasing our product. If there is any question, please feel free to contact us. This manual may have something inaccurate in technology, unsuited

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

925VST. VoP Service Tester MOS = 4.50 CLR INFO BACK NEXT 1 QZ 2 ABC 3 DEF. Volume 5 JKL 4 GHI 6 MNO 7 PRS 8 TUV 9 WXY TALK # - * + ON/ OFF

925VST. VoP Service Tester MOS = 4.50 CLR INFO BACK NEXT 1 QZ 2 ABC 3 DEF. Volume 5 JKL 4 GHI 6 MNO 7 PRS 8 TUV 9 WXY TALK # - * + ON/ OFF SAGE INSTRUMENTS 925VST VoP Service Tester SAGE 925VST VoP Service Tester MOS = 4.50 F1 F2 F1 F2 CLR INFO BACK NEXT Volume 1 QZ 4 GHI 2 ABC 5 JKL 3 DEF 6 MNO TALK 7 PRS 8 TUV 9 WXY ON/ OFF * + 0 # - USER

More information

SCI Testers and Remote Communication: Using HyperTerminal

SCI Testers and Remote Communication: Using HyperTerminal Testers and Remote Communication: Using HyperTerminal Introduction Programmable industrial equipment has long been a staple for automation in manufacturing environments. The capability to remotely program

More information

CA-101 KEYBOARD USER MANUAL

CA-101 KEYBOARD USER MANUAL CA-101 KEYBOARD USER MANUAL 0 CA-101 Keyboard User Manual V1.0 Thanks a lot for purchasing our product. If there is any question, please feel free to contact us. This manual may have something inaccurate

More information

LCD / Barcode Terminal

LCD / Barcode Terminal ST3 SIOX-LCD / Barcode Terminal p 2 TELEFRANG AB LCD / Barcode Terminal General Description This module is a remote LCD terminal communicating with the central computer through a two-wire SIOX bus. It

More information

Model 2040/2040XL Indicator Service Manual

Model 2040/2040XL Indicator Service Manual Model 2040/2040XL Indicator Service Manual 2 Model 2040 Indicator Service Manual Table of Contents Table of Contents... 3 Specifications...4 Introduction... 7 Setup Menu (2040 password)...7 To Access the

More information

COBOL - TABLE PROCESSING

COBOL - TABLE PROCESSING COBOL - TABLE PROCESSING http://www.tutorialspoint.com/cobol/cobol_table_processing.htm Copyright tutorialspoint.com Arrays in COBOL are known as tables. An array is a linear data structure and is collection

More information

Complementary Angles CHAPTER. 1

Complementary Angles CHAPTER.  1 www.ck12.org 1 CHAPTER 1 Complementary Angles Here you ll learn what complementary angles are and how to solve complementary angle problems. What if you were given two angles of unknown size and were told

More information

Communication Device. Wireless Setup Instructions

Communication Device. Wireless Setup Instructions Communication Device Wireless Setup Instructions Introduction The Communication Device can be setup for wireless usage, enabling you to move your meter to any location that is within the range of a wireless

More information

RS-232 Control of the Advantage EQ281/8, EQ282/8 and Advantage SMS200

RS-232 Control of the Advantage EQ281/8, EQ282/8 and Advantage SMS200 RS-232 Control of the Advantage EQ281/8, EQ282/8 and Advantage SMS200 Biamp Systems, 14130 N.W. Science Park, Portland, Oregon 97229 U.S.A. (503) 641-7287 an affiliate of Rauland-Borg Corp. Introduction

More information

CA-101 Keyboard. User Manual. Version1.0

CA-101 Keyboard. User Manual. Version1.0 CA-101 Keyboard User Manual Version1.0 Thanks a lot for purchasing our product. If there is any question, please feel free to contact us. This manual may have something inaccurate in technology, unsuited

More information

CUSTOM MANUFACTURED IN U.S.A. BY RADIO SHACK, A DIVISION OF TANDY CORPORATION CAT. NO

CUSTOM MANUFACTURED IN U.S.A. BY RADIO SHACK, A DIVISION OF TANDY CORPORATION CAT. NO CUSTOM MANUFACTURED IN U.S.A. BY RADIO SHACK, A DIVISION OF TANDY CORPORATION CAT. NO. 26-6050 TRS-80 DT-1 OWNER'S MANUAL Contents Introduction 1 1/ Description of the DT-1 3 2/ Setting Up the DT-1 5

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

BARCODE SCANNER. Configuration Guide - 1 -

BARCODE SCANNER. Configuration Guide - 1 - BARCODE SCANNER Configuration Guide - 1 - Table of Contents Chapter 1 System Information 1.1 About this manual 3 1.2 How to set up the parameter 3 1.3 How to set up the parameter - II 4 Chapter 2 System

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 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

MK D Imager Barcode Scanner Configuration Guide

MK D Imager Barcode Scanner Configuration Guide MK-5500 2D Imager Barcode Scanner Configuration Guide V1.4 Table of Contents 1 Getting Started... 3 1.1 About This Guide... 3 1.2 Barcode Scanning... 3 1.3 Factory Defaults... 3 2 Communication Interfaces...

More information

Model 1040/XL Indicator Service Manual

Model 1040/XL Indicator Service Manual Model 1040/XL Indicator Service Manual 2 Model 1040/XL Indicator Service Manual Table of Contents Table of Contents...3 Specifications...4 Introduction...7 Setup Menu (1040 password)...7 To Access the

More information

ADDMASTER. Addmaster Corporation. IJ-3080 Journal/Validation Printer. Specification. IJ-3080 Specification

ADDMASTER. Addmaster Corporation. IJ-3080 Journal/Validation Printer. Specification. IJ-3080 Specification IJ-3080 Journal/Validation Printer Specification Provides the electrical, mechanical, and interface specifications of the IJ-3080 Journal/Validation Printer. Cover Models: IJ-3080 The Addmaster Model IJ-3080

More information

Edition:2A ODM- 88. DVI Matrix Router USER MANUAL

Edition:2A ODM- 88. DVI Matrix Router USER MANUAL Edition:2A ODM- 88 DVI Matrix Router USER MANUAL ODM-88 Manual Page 2 ODM-88 Manual Page 3 Table of Contents 1 Introduction and Installation. 6 1.1 Key features... 6 1.2 ODM-88 Shipping Content... 6 1.3

More information

PD1100 STAND-ALONE PROGRAMMING & USER S GUIDE. use the freedom

PD1100 STAND-ALONE PROGRAMMING & USER S GUIDE. use the freedom PD1100 STAND-ALONE ALPHANUMERIC POLE DISPLAY PROGRAMMING & USER S GUIDE use the freedom Forward The information contained in this user s guide is subject to change without notice. This Programming and

More information

Model UD2A-EDID DVI Extender with EDID Management, Serial & GUI Control

Model UD2A-EDID DVI Extender with EDID Management, Serial & GUI Control Model UD2A-EDID DVI Extender with EDID Management, Serial & GUI Control UMA1148 Rev D Copyright 2008. Hall Research, Inc. All rights reserved. 1163 Warner Ave Tustin, CA 92780, Ph: (714)641-6607, Fax (714)641-6698

More information

Regulatory information FCC information. EU Conformity Statement. FCC conditions

Regulatory information FCC information. EU Conformity Statement. FCC conditions The information in this quick guide is subject to change without notice. SmartWatch assumes no responsibility for any errors or omissions in this quick guide. Regulatory information FCC information FCC

More information

Configuration Mita WP3000

Configuration Mita WP3000 Configuration Mita WP3000 1. Table of contents 1. Table of contents... 2 2. Introduction... 3 3. Mita - WP3000... 4 4. Cables... 6 4.1. WP3000... 6 5. Four Faith F2403 GPRS Signal monitoring... 7 PS-Data

More information

telnet Client User Interface for Accessing MX7cK s push buttons and LEDs. Template for P1.3

telnet Client User Interface for Accessing MX7cK s push buttons and LEDs. Template for P1.3 telnet Client User Interface for Accessing MX7cK s push buttons and LEDs. Template for P1.3 1 Motivation for Using telnet We have written a ToUpper server that uses TCP and runs on the TCP/IP stack of

More information

BESTip ATA Combo Quick Start Manual (Ver.1.53G)

BESTip ATA Combo Quick Start Manual (Ver.1.53G) BESTip ATA Combo Quick Start Manual (Ver.1.53G) Requirements: Before making any Internet call from your BESTip ATA Combo, you need the following items: 1. An Touch-tone phone set. 2. An 110/220V AC electrical

More information

Epson PX4 info page. Pinouts and circuit diagrams: RS232 Serial Port Parallel Printer Port Config DIP Switches System Bus Port

Epson PX4 info page. Pinouts and circuit diagrams: RS232 Serial Port Parallel Printer Port Config DIP Switches System Bus Port Epson PX4 info page Epson PX4 info page Pinouts and circuit diagrams: RS232 Serial Port Parallel Printer Port Config DIP Switches System Bus Port Also i have summarised the PX4 manual with this CP/M command

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

EXPERIMENT 8: Introduction to Universal Serial Asynchronous Receive Transmit (USART)

EXPERIMENT 8: Introduction to Universal Serial Asynchronous Receive Transmit (USART) EXPERIMENT 8: Introduction to Universal Serial Asynchronous Receive Transmit (USART) Objective: Introduction To understand and apply USART command for sending and receiving data Universal Serial Asynchronous

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

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

eurösec CPX Control Panel User Instructions

eurösec CPX Control Panel User Instructions eurösec CPX Control Panel User Instructions eurösec CPX User Manual Contents User Information... 2 Introduction... 3 User Code Types... 3 Setting The System... 4 Setting & Unsetting via Keyswitch... 4

More information

Control Keyboard Operating Manual

Control Keyboard Operating Manual Control Keyboard Operating Manual 1 Contents Welcome...4 Important Safeguarding and Warnings...5 1 Feature and Specification...6 1.1 Feature...6 1.2 Specification...6 2 Keyboard Function...7 2.1 Keyboard

More information

KB232. PS/2 Keyboard RS-232 Adapter Part # SA0008 (Version 3.0) Copyright 2003 L3 Systems, Inc. Redmond

KB232. PS/2 Keyboard RS-232 Adapter Part # SA0008 (Version 3.0) Copyright 2003 L3 Systems, Inc. Redmond KB232 PS/2 Keyboard RS-232 Adapter Part # SA0008 (Version 3.0) Copyright 2003 L3 Systems, Inc. Redmond Command C Displays Configuration String CW= D Lkk=aa,bb P E H V T Quick Reference Notes Field

More information

Lite H.264 DVR Setup Guide

Lite H.264 DVR Setup Guide Package Content Lite H.264 DVR Setup Guide Inspect the packaging carton. Make sure the Lite H.264 DVR is properly delivered. Remove all items from the box and make sure the box contains the following items.

More information

BV x64 Serial + I2C Graphic Controller. Product specification. Apr 2013 V0.a. ByVac Page 1 of 12

BV x64 Serial + I2C Graphic Controller. Product specification. Apr 2013 V0.a. ByVac Page 1 of 12 Product specification Apr 2013 V0.a ByVac Page 1 of 12 Contents 1. Introduction... 3 2. Features... 3 3. Physical Specification... 3 3.1. Control Interface... 3 3.2. Serial Interface... 3 3.3. Multiple

More information

2D BARCODE SCANNER CA-SC-20200B

2D BARCODE SCANNER CA-SC-20200B D BARCODE SCANNER CA-SC-B Quick Start Guide Getting Familiar with Your Device Thank you for choosing Capture Bar Code Scanner. All Devices deliver world-class performance for a broad range of applications

More information

Nera WorldPhone. User s Manual

Nera WorldPhone. User s Manual Nera WorldPhone User s Manual RADIO FREQUENCY RADIATION HAZARD - KEEP CLEAR 1 METRE MINIMUM RADIATION WARNING High levels of radio frequency radiation are considered health hazardous. Although no single

More information

CMUCAM V1.12 interface Specific for RS232 By: Alexis Mesa

CMUCAM V1.12 interface Specific for RS232 By: Alexis Mesa CMUCAM V1.12 interface Specific for RS232 By: Alexis Mesa Relevant Documentation: Before tackling the CMUCAM, you must become familiarized with the following documents: XMEGA Manual: http://www.atmel.com/dyn/resources/prod_documents/doc8077.pdf

More information

8088 PROCESSOR & PERIPHERAL BOARD TESTING

8088 PROCESSOR & PERIPHERAL BOARD TESTING HWUTEST88/01943n (10 pages) 8088 PROCESSOR & PERIPHERAL BOARD TESTING SUBJECT: MILNOR Micro-Processor and Peripheral Board Testing Procedures Using 8088 Processor and Parallel Display This procedure will

More information

Data Representation and Binary Arithmetic. Lecture 2

Data Representation and Binary Arithmetic. Lecture 2 Data Representation and Binary Arithmetic Lecture 2 Computer Data Data is stored as binary; 0 s and 1 s Because two-state ( 0 & 1 ) logic elements can be manufactured easily Bit: binary digit (smallest

More information

IC-CONSOLE-5X User Manual

IC-CONSOLE-5X User Manual Contents Functionality... 2 Login/Shutdown... 4 Login:... 4 Shut Down:...Error! Bookmark not defined. How to use Zones... 5 Configuration:...Error! Bookmark not defined. Control point... 5 Zones (Menu

More information

A GUIDE TO RS-232 COMMUNICATION WITH FX PLCS

A GUIDE TO RS-232 COMMUNICATION WITH FX PLCS A GUIDE TO RS-232 COMMUNICATION WITH FX PLCS Page 1 of 35 A GUIDE TO RS-232 COMMUNICATION WITH FX PLCS This document has been written specifically for FX and FX0N users that are unfamiliar with RS-232

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

NC-1200 BARCODE SCANNER. Configuration Guide - 1 -

NC-1200 BARCODE SCANNER. Configuration Guide - 1 - NC-1200 BARCODE SCANNER Configuration Guide - 1 - Table of Contents Chapter 1 System Information 1.1 About this manual 3 1.2 How to set up the parameter-i 3 1.3 How to set up the parameter II 4 1.4 Resetting

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

4-7 Triangle Congruence: CPCTC

4-7 Triangle Congruence: CPCTC 4-7 Triangle Congruence: CPCTC Warm Up Lesson Presentation Lesson Quiz Holt Geometry McDougal Geometry Warm Up 1. If ABC DEF, then A? and BC?. D EF 2. What is the distance between (3, 4) and ( 1, 5)? 17

More information

ProLab 4000 ph/ise/conductivity

ProLab 4000 ph/ise/conductivity OPERATING MANUAL ba75646e04 04/2013 ProLab 4000 ph/ise/conductivity MEASURING INSTRUMENT WITH AUTOMATIC SENSOR RECOGNITION AND ELECTRONIC ACCESS CONTROL ProLab 4000 Copyright 2009, SI Analytics GmbH Reprinting

More information

SIGMATEST Operating Instructions

SIGMATEST Operating Instructions SIGMATEST 2.069 Software Version 3.12 Operating Instructions Registered trade-mark Contents 1. Introduction...4 2. Applications and Features...5 3. Getting Started...6 4. Measuring System Specifications...8

More information

1. If ABC DEF, then A? and BC?. D. EF 2. What is the distance between (3, 4) and ( 1, 5)? 17

1. If ABC DEF, then A? and BC?. D. EF 2. What is the distance between (3, 4) and ( 1, 5)? 17 Warm Up 1. If ABC DEF, then A? and BC?. D EF 2. What is the distance between (3, 4) and ( 1, 5)? 17 3. If 1 2, why is a b? Converse of Alternate Interior Angles Theorem 4. List methods used to prove two

More information

Karizma PlusTM. Intruder alarm system Operating instructions. Introduction

Karizma PlusTM. Intruder alarm system Operating instructions. Introduction Karizma PlusTM Intruder alarm system Operating instructions Introduction The purpose of this user guide is to describe how to operate Karizma plus system. Some of the features described in this guide may

More information

PROGRAMMABLE NUMERIC CONVERTER CNL 23 CONFIGURATION HANDBOOK

PROGRAMMABLE NUMERIC CONVERTER CNL 23 CONFIGURATION HANDBOOK PROGRAMMABLE NUMERIC CONVERTER CNL 23 CONFIGURATION HANDBOOK LOREME 12, rue des Potiers d'etain Actipole BORNY - B.P. 35014-57071 METZ CEDEX 3 Telephone 03.87.76.32.51 - Fax 03.87.76.32.52 Contact: Commercial@Loreme.fr

More information

EXPERIMENT 7: Introduction to Universal Serial Asynchronous Receive Transmit (USART)

EXPERIMENT 7: Introduction to Universal Serial Asynchronous Receive Transmit (USART) EXPERIMENT 7: Introduction to Universal Serial Asynchronous Receive Transmit (USART) Objective: To understand and apply USART command for sending and receiving data Introduction Universal Serial Asynchronous

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

Figure 1: ZigBee Evaluation Kit (ZEK) Contents. Figure 2: ZigBee Adapter Zb-121 and Module Zb-21

Figure 1: ZigBee Evaluation Kit (ZEK) Contents. Figure 2: ZigBee Adapter Zb-121 and Module Zb-21 The ZigBee Evaluation Kit (ZEK) has been developed for evaluation of the ZigBee wireless solution from Amp ed RF. This demo kit utilizes Amp ed RF ZigBee Serial Adapter (AR Zb-121) board with embedded

More information

Dolphin 99EX. with Windows Embedded Handheld 6.5. Quick Start Guide

Dolphin 99EX. with Windows Embedded Handheld 6.5. Quick Start Guide Dolphin 99EX with Windows Embedded Handheld 6.5 Quick Start Guide Disclaimer Honeywell International Inc. ( HII ) reserves the right to make changes in specifications and other information contained in

More information

MOSS-DVR-810 Mobile Digital SD Recorder User Manual

MOSS-DVR-810 Mobile Digital SD Recorder User Manual MOSS-DVR-810 Mobile Digital SD Recorder User Manual Before installing and using, be sure to read this Manual for best performance. ATTENTION This product is to be used within the vehicle interior. In order

More information

Using Hyperterminal with Vortex and Echofree Devices

Using Hyperterminal with Vortex and Echofree Devices Using Hyperterminal with Vortex and Echofree Devices Application Note Polycom Installed Voice Business Group September 2004 TABLE OF CONTENTS TABLE OF CONTENTS...1 TABLE OF CONTENTS...2 HYPERTERMINAL FOR

More information

PS232. RS-232 to PS/2 Keyboard Port Adapter Part # SA0009 (Version 4.0) Copyright 2003 L3 Systems, Inc. Redmond

PS232. RS-232 to PS/2 Keyboard Port Adapter Part # SA0009 (Version 4.0) Copyright 2003 L3 Systems, Inc. Redmond PS232 RS-232 to PS/2 Keyboard Port Adapter Part # SA0009 (Version 4.0) Copyright 2003 L3 Systems, Inc. Redmond Quick Reference Command Description Pg ~H Help Screen Displays short command reference 4 ~V

More information

Handheld Computer Z-217X ( Version 1.02) User s Manual

Handheld Computer Z-217X ( Version 1.02) User s Manual ,e Handheld Computer Z-217X ( Version 1.02) User s Manual Editorial Record Version Date of edited Page Content Ver1.00 2014/05/14 Initial release Z-217X Plus User s Manual 1.00 2014/05/14 2 / 44 Table

More information

TD-CALTERM2-001 CalTerm2 User s Guide

TD-CALTERM2-001 CalTerm2 User s Guide Technical Document TD-CALTERM2-001 CalTerm2 User s Guide DAQ Electronics Division 262-B Old New Brunswick Road, Piscataway, NJ 08854 732 981 0050 www.daq.net 2006 DAQ Electronics, Inc. All rights reserved.

More information