Ready-Set-Go (RSG) Controller: Getting Starter

Size: px
Start display at page:

Download "Ready-Set-Go (RSG) Controller: Getting Starter"

Transcription

1 Ready-Set-Go (RSG) Controller: Getting Starter 1. SETTING UP HYPERTERMINAL FOR THE RSG CONTROLLER Hardware Setup Software Setup: Configuring Hyperterminal Troubleshooting the Installation 7 2. WRITING A SIMPLE PROGRAM IN MCS BASIC Programming Basics Documenting Programs in MCS BASIC How Much Memory Space Does My Program Occupy? STORING AND EXECUTING PROGRAMS IN NONVOLATILE MEMORY Storing Programs in Nonvolatile Memory Recalling a Stored Program Editing a Stored Program Autoexecuting a Stored Program Clearing Nonvolatile Memory ACCESSING PERIPHERAL DEVICES Memory Map of RSG Controller Accessing the Digital Input/Output Ports Accessing the Analog-to-Digital Converter Accessing the Liquid Crystal Display CONNECTOR PIN-OUTS 18 This document is protected by Copyright 2006 Intempco Controls, Ltd. Latest Revision: Sept. 26, (NK)

2 1. Setting Up HyperTerminal for the RSG Controller The simplest way of communication with and programming the RSG Controller is through Windows HyperTerminal or a similar terminal emulation program running on an IBM-PC (or MAC for that matter). The following chapter provides step-by-step instructions on how to configure HyperTerminal for reliable communication and file transfer with the RSG Controller. As a general rule HyperTerminal is bundled with Windows XP and no installation on the PC is necessary. 1.1 Hardware Setup The RSG Controller connects to the PC through an RS-232 DB9 straight-through serial cable with opposite genders (male/female) at either end. The male end of the cable connects to the RSG Controller and the female end to a free COM port on the PC. If the PC does not have a COM port a USB to DB9M serial adapter can be used. The drivers for the serial adapter must first be installed on the PC in accordance with the manufacturer s instructions. Many laptop computers do not come equipped with COM ports but can usually accommodate several USB devices. Once the serial cable has been installed, connect the AC power adapter to the RSG Controller power jack and plug the adapter into a suitable wall outlet. Press the RSG reset button (located to the right of the DB9F connector). The hardware setup is now complete. 1.2 Software Setup: Configuring Hyperterminal On the Start menu, click Programs\Accessories\Communications\HyperTerminal. Ready-Set-Go (RSG) Controller: Getting Started page 2 of 21

3 If the following message appears, you can click Yes or No at your discretion. In the next window type in a new name (i.e., RSG Board) and select an icon for the connection. Click OK. In the future you can retrieve the appropriate HyperTerminal configuration and avoid this entire configuration procedure by simply clicking on the name you selected, i.e., on the Start menu click: Programs \ Accessories \ Communications \ HyperTerminal \ RSG Board.ht Under Connect using:, select the COM port where the RSB Controller is connected (typically COM1 or COM2 on a desktop computer). If you are using a USB to serial adapter, the port number could potentially be higher; e.g., COM5. Click OK to proceed. Ready-Set-Go (RSG) Controller: Getting Started page 3 of 21

4 The next step is to set the actual serial communication parameters. The RSG Controller has an algorithm for auto baud rate detection so any baud rate up to and including is acceptable. For testing purposes, try something conservative; say 9600 baud. In terms of format use 8 data bits, no parity and 1 stop bit. Select software (Xon/Xoff) flow control. Xon and Xoff correspond to the ASCII codes Ctrl-Q and Ctrl-S. These codes are sent by the receiving device to the transmitting device in order to stop and start data transmission. Click OK to accept the changes. HyperTerminal is now ready to communicate with the RSG Controller, however, a few additional changes to the configuration are required to ensure reliable file transfers from the PC to the Controller. Click Disconnect (fourth icon from the left). Click on File and then Properties. Ready-Set-Go (RSG) Controller: Getting Started page 4 of 21

5 Click on the Settings tab. Under Backspace key sends select the radio button marked Del. This is required for the Backspace key to function properly. Click on ASCII Setup. MCS Basic-52 interprets each incoming line as it is received and stores it in a compact tokenized format. When transferring files from the PC to the RSG Controller, a certain delay is required between successive characters and after each line to provide time for tokenizing. For Line Delay type 600 and for Character Delay type 20. Click OK to accept the changes Click OK again to close the RSG Board Properties dialog box. Ready-Set-Go (RSG) Controller: Getting Started page 5 of 21

6 To re-establish communications with the RSG Controller, click on Call (the third icon from the left). If you haven t already done so, press the RSG hardware reset button located to the right of the DB9F connector. Wait three seconds and hit the Spacebar on the keyboard. Do not hit any other keys. The MCS Basic-52 baud rate detection algorithm uses the spacebar (ASCII 20H) to determine the actual baud rate of the transmitting device. If the configuration procedure was successful, the MCS Basic-52 prompt should be displayed in the HyperTerminal window. If you see this, the Software Setup is complete and the RSG Controller is ready to be programmed. Save your configuration by Clicking on File and then Save. Ready-Set-Go (RSG) Controller: Getting Started page 6 of 21

7 1.3 Troubleshooting the Installation Symptom: I reset the RSB Controller and hit the Spacebar but nothing appears in the HyperTerminal window. I get random character on the HyperTerminal window; e.g., E@øAJÍ r t`. The RSG Controller was working but I can no longer get control. Corrective Action: If no characters appear in the HyperTerminal window and the cursor does not move, chances are that there is a problem with the serial communication link between the PC and RSG Controller. Make sure that you selected the correct COM port. If you are using a USB to serial adapter, check to see if the drivers were properly installed. Double check the serial cable connections. Is the RSG Controller powered up? Is the COM port being used by another software application? Close all applications that could potentially be interfering with the serial port. If all else fails, try a completely different PC (preferably a desktop PC with a standard COM port). The Spacebar must be the first character hit after a hardware reset of the RSG Controller. Press reset again, wait three seconds and hit the Spacebar before typing in anything else. It s possible that the RSG Controller is stuck in an endless loop or that a program you were working on crashed miserably. Try typing Ctrl-C ( Ctrl key and C simultaneously) If you still don t have control, hit Ctrl-C several times in rapid succession immediately following a hardware reset. If all else fail, disconnect the AC power adapter from the wall outlet, wait five seconds, reapply power, press the RSG hardware reset button, wait three seconds and hit the Spacebar. Ready-Set-Go (RSG) Controller: Getting Started page 7 of 21

8 2. Writing a Simple Program in MCS BASIC-52 MSC BASIC-52 is a versatile software tool that can drastically reduce the development time of many mechatronic design projects. The program provides most of the functionality of standard BASIC, plus many unique features to support data acquisition and control applications. These features include the ability to store and automatically execute programs out of nonvolatile memory, the ability to access peripheral devices within the constructs of a BASIC program, plus a real time clock. The most comprehensive guide to programming the RSG Controller is the original MCS BASIC-52 (Version 1 & 1.1) Operating and Reference Manual from Intel Corporation. A PDF version of this 215 page document can be found on the companion CD that was shipped with the RSG Controller. A brief introduction to programming with MCS Basic- 52 is provided here. 2.1 Programming Basics BASIC-52 closely follows the syntax of standard BASIC. Each line begins with a unique number. The program on the right is a simple example that demonstrates the use of for / next loops. Type in the program exactly as shown and type list to display the program and run to execute. Ready-Set-Go (RSG) Controller: Getting Started page 8 of 21

9 To change a line simply retype the line including the line number. Example: 20 print sqr(i) [enter] The program will now list the square root of 1 through 5. To insert a line between lines 10 and 20 simply enter a line beginning with 11 through 19. As program become more complex, it may be convenient to use a simple text editor such as Windows Notepad for program development and archiving. You can simply cut and paste programs between Notepad and HyperTerminal. Highlight the text in Notepad and then click on Edit and then Copy. Type new [enter] in HyperTerminal then click on Edit and Paste to Host. The new command in BASIC-52 deletes the program that is currently stored in RAM. This prevents the insertion of lines from the previously stored program into the new program. Note the PRINT USING(##.###) command. This tells BASIC-52 what floating point format to use when printing to the console device (i.e., HyperTerminal). Ready-Set-Go (RSG) Controller: Getting Started page 9 of 21

10 2.2 Documenting Programs in MCS BASIC-52 REM is short for REMark. It does nothing, but allows the user to add comments to a program. Comments are usually needed to make a program a little easier to understand. If no line number is assigned to the REM statement, then BASIC-52 interprets the line as a comment directly in COMMAND mode. The REM statement is not stored in memory which saves space and improves execution speed. The comments remain available to the user when viewed through the text editor. 2.3 How Much Memory Space Does My Program Occupy? MCS BASIC-52 stores programs in a compact tokenized format. You can determine the length of a program by typing: print len The example shown occupies 228 bytes of storage. With 32K bytes of available memory you can save approximately 1200 lines of code. Ready-Set-Go (RSG) Controller: Getting Started page 10 of 21

11 3. Storing and Executing Programs in Nonvolatile Memory The RSG Controller has 32K of nonvolatile memory that is implemented using E 2 PROM technology (Electronically Erasable Programmable Read Only Memory). Unlike SRAM (Static Random Access Memory), programs and data that are written to the E 2 PROM device are not lost if the power is interrupted. The device can, however, be erased or programmed under software control using BASIC-52 commands. A unique feature of the RSG Controller is the ability to automatically execute programs out of nonvolatile memory on startup. This is extremely useful for autonomous data logging and control applications. This chapter provides step-by-step instructions on how to: 3.1 Store a program in nonvolatile memory 3.2 Recall a stored program 3.3 Edit a stored program 3.4 Autoexecute a stored program on startup 3.5 Clear nonvolatile memory 3.1 Storing Programs in Nonvolatile Memory To save the currently selected program in nonvolatile memory simply type: fprog [enter] The system responds with 1 indicating that this is the first program in E 2 PROM. The commands fprog and prog are basically equivalent, however, fprog is significantly faster. Ready-Set-Go (RSG) Controller: Getting Started page 11 of 21

12 3.2 Recalling a Stored Program To test this feature, unplug the AC power adapter from the wall outlet, wait a few seconds and then reapply power. Hit the space bar to get the BASIC-52 prompt. To recall the first program saved in nonvolatile memory simply type: rom1 [enter] rom2 recalls the second program, etc. 3.3 Editing a Stored Program Programs stored in nonvolatile memory can not be edited directly. Recall the program using ROM1 and use the XFER command to transfer the program from E 2 PROM to SRAM for editing purposes. The command RAM switches the mode of operation from ROM to RAM so that the user can edit the program and interact with the BASIC-52 command interpreter. Ready-Set-Go (RSG) Controller: Getting Started page 12 of 21

13 3.4 Autoexecuting a Stored Program The PROG2 command configures the RSG Controller to automatically execute the first program in nonvolatile memory on startup or following a hardware reset. To test this function, type: prog2 [enter] and press the hardware reset button (or cycle the power off and on). Note that the RSG Controller does not have to be connected to a console device for PROG2 to work. 3.5 Clearing Nonvolatile Memory Nonvolatile memory must be cleared manually by executing a three line erase program that writes 0FFH to every memory location within the E 2 PROM. Note that a memory location is considered erased when every bit is set to one. The erase program can only be executed in RAM mode. Execution time to erase the entire E 2 PROM is 141 sec. Ready-Set-Go (RSG) Controller: Getting Started page 13 of 21

14 4. Accessing Peripheral Devices All of the peripheral devices on the RSG Controller are memory mapped; i.e., they appear as memory locations to the user. Devices and external memory locations can be accessed via the MCS BASIC-52 XBY instruction. XBY is analogous to a pointer in the C language. For example, the statement XBY(7FF2H)=Y stores the value of the variable Y in location 7FF2H (H signifies hexadecimal). The value of Y assigned to the XBY operator must be between 0 and 255 (i.e., 1 byte). The statement Y=XBY(7FF2H) stores the contents of location 7FF2H in variable Y. 4.1 Memory Map of RSG Controller From: To: Description: 0000H 7FEFH SRAM Static Random Access Memory Volatile Data is lost if the power is interrupted 7FF0H 7FFFH Devices Memory Mapped Peripheral Devices Electronically Erasable Programmable Read Only Memory 8000H FFFFH E 2 Nonvolatile PROM data is not lost if the power is interrupted, however, device can be erased or programmed under software control Ready-Set-Go (RSG) Controller: Getting Started page 14 of 21

15 4.2 Accessing the Digital Input/Output Ports From: To: Description: 7FF1H - Digital Input/Output Ports Programming Notes: A WRITE operation to address 7FF1H writes to the digital output port (8 bits). A READ operation from address 7FF1H reads the digital input port (8 bits). Sample Program: REM *** Read the status of 2 switches connected REM *** to Digital Input 0 and Digital Input 1 REM *** 10 DIG_IN=XBY(7FF1H) 20 IF (DIG_IN.AND.1)=1 THEN SW_0=1 ELSE SW_0=0 30 IF (DIG_IN.AND.2)=2 THEN SW_1=1 ELSE SW_1=0 40 PRINT "Switch 0 =",SW_0,"Switch 1 =",SW_1 50 GOTO 10 Ready-Set-Go (RSG) Controller: Getting Started page 15 of 21

16 4.3 Accessing the Analog-to-Digital Converter From: To: Description: 7FF2H 7FF3H Analog-to-Digital Converter (A/D converter) Programming Notes: A WRITE operation to either address 7FF2H or 7FF3H sets the analog input channel and initiates conversion on the A/D converter. Valid entries are 0 to 3. Only bits 0 and 1 are used, bits 2 to 7 are masked. Following a change of input channel, the first value read is from the previously set channel, therefore two consecutive WRITE operations are required to change the channel and update the output data. A READ operation from 7FF2H reads the Most Significant Byte (MSB) of the A/D converter. A READ operation from 7FF3H reads the Least Significant Byte (LSB) of the A/D converter. For the 12 A/D bit converter, the LSB contains the four least significant bits left justified (i.e. DB7-DB4) with trailing zeros (i.e. DB3-DB0 all set to zero). The A/D data is in two s complement notation. REM *** SELECT THE ANALOG INPUT CHANNEL 10 INPUT "Analog Input Channel? ", CHAN 20 XBY(7FF2H)=CHAN : XBY(7FF2H)=CHAN Sample Program: REM *** CONVERT FROM 2 S COMPLEMENT FORMAT 30 MSB=XBY(7FF2H) : LSB=XBY(7FF3H) 40 HEXVAL=MSB*256+LSB 50 IF HEXVAL>32767 THEN HEXVAL=HEXVAL REM *** CONVERT INPUT RANGE TO +/-10 VOLTS 60 VOLT=HEXVAL/ REM *** DISPLAY RESULTS 70 PRINT USING(0), "A to D channel ", CHAN, " = ", 80 PRINT USING(###.####), VOLT 90 GOTO 20 Ready-Set-Go (RSG) Controller: Getting Started page 16 of 21

17 4.4 Accessing the Liquid Crystal Display From: To: Description: 7FF4H 7FF5H Liquid Crystal Display (LCD) Programming Notes: A WRITE operation to address 7FF4H writes to the LCD controller Instruction Register (IR) A READ operation from address 7FF4H reads the Busy Flag (DB7) and Address Counter (DB0-DB6) A WRITE operation to address 7FF5H writes to the Data Register (DR) A READ operation from address 7FF5H reads the Data Register (DR) REM *** Allocate memory for 2 strings then initialize strings REM *** memory required = 35 bytes (16*2+2+1) 10 STRING 35,16 20 $(0)=" Intempco " 30 $(1)=" RSG Controller " Sample Program: REM *** Initialize LCD Display 40 GOSUB 200 REM *** Send characters to LCD 50 FOR J=0 TO 1 60 FOR I=1 TO XBY(7FF5H)=ASC($(J),I) 80 NEXT I REM *** Advance to second line 90 XBY(7FF4H)=0C0H 100 NEXT J 110 END REM *** Subroutine to initialize LCD Display 200 XBY(7FF4H)=38H 210 XBY(7FF4H)=0EH 220 XBY(7FF4H)=06H 230 XBY(7FF4H)=80H 240 RETURN Ready-Set-Go (RSG) Controller: Getting Started page 17 of 21

18 5. Connector Pin-Outs P1: RS232 (DB9RA/F) Ring Indicator RI 9 Clear To Send CTS 8 Request To Send RTS 7 Data Set Ready DSR 6 5 GND 4 DTR Data Terminal Ready 3 TXD Transmit Data 2 RXD Receive Data 1 DCD Data Carrier Detect Note: Pins 7 (RTS) and 8 (CTS) are shorted together on the RSG board. Pins 1 (DCD), 4 (DTR) and 6 (DSR) are shorted together on the RSG board. P2: Power Jack 2 Contact: 5 to 12 VAC, 7 to 12 VDC (independent of polarity) P3: JTAG Test Port (IDC10) Test Clock TCK 1 2 Ground Test Data Output TD0 3 4 V CC Target V CC Test Mode Select TMS 5 6 (Not Connected) (Not Connected) 7 8 (Not Connected) Test Data Input TDI 9 10 Ground Ready-Set-Go (RSG) Controller: Getting Started page 18 of 21

19 P4: I/O Connector (DB25RA/M) Digital Output 1 14 Digital Output 3 15 Digital Output 5 16 Digital Output 7 17 Digital Input 1 18 Digital Input 3 19 Digital Input 5 20 Digital Input 7 21 Ground 22 Ground 23 Analog Input Channel 0 24 Analog Input Channel Digital Output 0 2 Digital Output 2 3 Digital Output 4 4 Digital Output 6 5 Digital Input 0 6 Digital Input 2 7 Digital Input 4 8 Digital Input 6 9 Pulse-Width-Modulation Output 10 Power Output (+5V DC) 11 Power Output (+5V DC) 12 Analog Input Channel 1 13 Analog Input Channel 3 Ready-Set-Go (RSG) Controller: Getting Started page 19 of 21

20 P5: I/O Connector (IDC26) Digital Output Digital Output 1 Digital Output Digital Output 3 Digital Output Digital Output 5 Digital Output Digital Output 7 Digital Input Digital Input 1 Digital Input Digital Input 3 Digital Input Digital Input 5 Digital Input Digital Input 7 Pulse-Width-Modulation Output Ground Power Output (+5V DC) Ground Power Output (+5V DC) Analog Input Channel 0 Analog Input Channel Analog Input Channel 2 Analog Input Channel (Not Connected) Ready-Set-Go (RSG) Controller: Getting Started page 20 of 21

21 P6: Microprocessor Interface (IDC26) WRITE/ 1 2 READ/ ADDRESS_0 3 4 FREE_CS (Free Chip Select) ADDRESS_DATA_7 5 6 ADDRESS_DATA_6 ADDRESS_DATA_5 7 8 ADDRESS_DATA_4 ADDRESS_DATA_ ADDRESS_DATA_2 ADDRESS_DATA_ ADDRESS_DATA_0 (T2) P P1.1 (T2EX) (PWM_OUT) P P1.5 (PGM_EN/) (DMA_ACK/) P P1.7 (LPT/) (INT1/) P P3.4 (T0) (T1) P Clock ( MHz) +10V (from MAX232) V (from MAX232) Power Output (+5V DC) Ground Ready-Set-Go (RSG) Controller: Getting Started page 21 of 21

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

3.1 I-7560 Pin Assignment and Specifications: Introduction

3.1 I-7560 Pin Assignment and Specifications: Introduction 3.1 I-7560 Pin Assignment and Specifications: Introduction The I-7560 adds a Windows serial Com port via its USB connection and is compatible with new & legacy RS-232 devices. USB Plug and Play allows

More information

Serial Interfaces Part 1. ECE 153B Sensor & Peripheral Interface Design Winter 2016

Serial Interfaces Part 1. ECE 153B Sensor & Peripheral Interface Design Winter 2016 Serial Interfaces Part 1 ECE 153B Sensor & Peripheral Interface Design Serial Interfaces Simple Serial Interfaces RS-232C (UART) Provides for point to point communications, primarily Among the simplest

More information

USB to DB25 RS232 Adapter User Manual. Features. Windows 7/ Vista / 2003 / XP / 2000 Driver Installation

USB to DB25 RS232 Adapter User Manual. Features. Windows 7/ Vista / 2003 / XP / 2000 Driver Installation 765289 USB to DB25 RS232 Adapter User Manual The USB Serial Adapter is designed to make serial port expansion quick and simple. Connecting to a USB port on your computer or USB hub, the USB Serial Adapter

More information

Hardware Manual. PCMCIA 1 Port RS EDITION APRIL 1999

Hardware Manual. PCMCIA 1 Port RS EDITION APRIL 1999 Hardware Manual 232 232232 PCMCIA 1 Port RS232 1.1 EDITION APRIL 1999 Guarantee. FULL 36 MONTHS GUARANTEE. We guarantee your interface card for a full 36 months from purchase, parts and labour, provided

More information

Models: TD3000 Series. Table Displays. 2 by 20 character display USER MANUAL

Models: TD3000 Series. Table Displays. 2 by 20 character display USER MANUAL Models: TD3000 Series Table Displays 2 by 20 character display USER MANUAL i NOTICE The manufacturer of the POS table display makes no representations or warranties, either expressed or implied, by or

More information

I-7560U/7561U/7563U. User Manual WARRANTY WARNING COPYRIGHT TRADEMARKS CONTACT US

I-7560U/7561U/7563U. User Manual WARRANTY WARNING COPYRIGHT TRADEMARKS CONTACT US I-7560U/7561U/7563U User Manual USB tto RS--232//422//485 Converrtterrss Verr.. 1..0,, Decc.. 2013 WARRANTY All products manufactured by ICP DAS are warranted against defective materials for a period of

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

RM024 DVK USER GUIDE VERSION 1.2

RM024 DVK USER GUIDE VERSION 1.2 USER GUIDE VERSION 1.2 Americas: +1-800-492-2320 Asia: +852-2923-0610 REVISION HISTORY Version Revision Date Change Description Approved By 1.0 20 Dec 2012 Initial Release Chris Downey 1.1 15 Apr 2014

More information

CMS-8GP32. A Motorola MC68HC908GP32 Microcontroller Board. xiom anufacturing

CMS-8GP32. A Motorola MC68HC908GP32 Microcontroller Board. xiom anufacturing CMS-8GP32 A Motorola MC68HC908GP32 Microcontroller Board xiom anufacturing 2000 717 Lingco Dr., Suite 209 Richardson, TX 75081 (972) 994-9676 FAX (972) 994-9170 email: Gary@axman.com web: http://www.axman.com

More information

Table of Contents. PREFACE... vii CONVENTIONS... vii HOW TO USE THIS MANUAL... vii Further Information...viii

Table of Contents. PREFACE... vii CONVENTIONS... vii HOW TO USE THIS MANUAL... vii Further Information...viii Table of Contents PREFACE... vii CONVENTIONS... vii HOW TO USE THIS MANUAL... vii Further Information...viii USING BASIC-52... 1 BASIC-52 PINOUT AND FEATURES... 1 8052AH and 80C52 DIFFERENCES... 1 DEFINITION

More information

ICP PANEL-TEC PEX3000 II

ICP PANEL-TEC PEX3000 II ICP PANEL-TEC PEX3000 II MODBUS PORT EXPANDER INSTALLATION AND OPERATION GUIDE REVISION HISTORY Revision Date Author Comments 000 29 Aug 2008 Keira Majors Initial release. 001 16 Sep 2008 David Walker

More information

INTRODUCTION 2 FEATURES. 2 SPECIFICATIONS. 2 PIN ASSIGNMENT 2 DB-9 DB-25 CONVERSION TABLE. 2 DRIVER INSTALLATION QUICK GUIDE.. 2

INTRODUCTION 2 FEATURES. 2 SPECIFICATIONS. 2 PIN ASSIGNMENT 2 DB-9 DB-25 CONVERSION TABLE. 2 DRIVER INSTALLATION QUICK GUIDE.. 2 USB to RS-232 Converter Part Number: USB-232-1 Communications made easy CONTENTS INTRODUCTION 2 FEATURES. 2 SPECIFICATIONS. 2 PIN ASSIGNMENT 2 DB-9 DB-25 CONVERSION TABLE. 2 DRIVER INSTALLATION QUICK GUIDE..

More information

Product Manual. 8-Port RS-232 USB to Serial Adapter Data Control Box. Coolgear, Inc. Version 1.1 September 2017 Model Number: USB-8COM

Product Manual. 8-Port RS-232 USB to Serial Adapter Data Control Box. Coolgear, Inc. Version 1.1 September 2017 Model Number: USB-8COM 8-Port RS-232 USB to Serial Adapter Data Control Box Product Manual Coolgear, Inc. Version 1.1 September 2017 Model Number: USB-8COM 2 USB-8COM Product Manual Revision History Revision Date Author Comments

More information

4.3 Digital Communication

4.3 Digital Communication Data Acquisition & Computer Control 11 4.3 Digital Communication Why digital communication (often termed digital input/output, or DIO)? Because the language of computers (and many peripheral devices) is

More information

Chapter 11: Input/Output Organisation. Lesson 05: Asynchronous RS232C Serial Port data transfer

Chapter 11: Input/Output Organisation. Lesson 05: Asynchronous RS232C Serial Port data transfer Chapter 11: Input/Output Organisation Lesson 05: Asynchronous RS232C Serial Port data transfer Objective Understand the RS232C asynchronous data transfer and signals Learn the RS232C serial port communication

More information

The Analyst RS422/RS232 Tester. With. VTR, Monitor, and Data Logging Option (LOG2) User Manual

The Analyst RS422/RS232 Tester. With. VTR, Monitor, and Data Logging Option (LOG2) User Manual 12843 Foothill Blvd. Suite C Sylmar, California 91342 V: 818.898.3380 F: 818.898.3360 sales@dnfcontrols.com The Analyst RS422/RS232 Tester With VTR, Monitor, and Data Logging Option (LOG2) User Manual

More information

Models: LD9000 Series. Customer Displays. 2 by 20 character display USER MANUAL

Models: LD9000 Series. Customer Displays. 2 by 20 character display USER MANUAL Models: LD9000 Series Customer Displays 2 by 20 character display USER MANUAL i NOTICE The manufacturer of the POS pole display makes no representations or warranties, either expressed or implied, by or

More information

Korenix JetCard Series Multiport Serial Card/Ethernet Switch Card User s Manual

Korenix JetCard Series Multiport Serial Card/Ethernet Switch Card User s Manual Korenix JetCard Series Multiport Serial Card/Ethernet Switch Card User s Manual Third Edition, Dec. 2008 www.korenix.com Korenix JetCard Series Multiport Serial Card/Ethernet Switch Card User s Manual

More information

Mini USB to RS-232 Serial Adapter DB-9 Male Converter. Product Manual. Coolgear Version 1.0 January 2018 Model Number: USBG-232MINI.

Mini USB to RS-232 Serial Adapter DB-9 Male Converter. Product Manual. Coolgear Version 1.0 January 2018 Model Number: USBG-232MINI. Mini USB to RS-232 Serial Adapter DB-9 Male Converter Product Manual Coolgear Version 1.0 January 2018 Model Number: USBG-232MINI 2 USBG-232MINI PRODUCT MANUAL Revision History Revision Date Author Comments

More information

Hardware Manual PCMCIA DUAL RS EDITION MAY 1999

Hardware Manual PCMCIA DUAL RS EDITION MAY 1999 Hardware Manual 232 232232 PCMCIA DUAL RS232 1.4 EDITION MAY 1999 Guarantee. FULL 36 MONTHS GUARANTEE. We guarantee your interface card for a full 36 months from purchase, parts and labour, provided it

More information

RS 232 Interface. RS 232 is the Serial interface on the PC. Three major wires for the Serial interface: Transmit Pin 2 Receive Pin 3

RS 232 Interface. RS 232 is the Serial interface on the PC. Three major wires for the Serial interface: Transmit Pin 2 Receive Pin 3 RS 232 Interface RS 232 is the Serial interface on the PC Three major wires for the Serial interface: Transmit Pin 2 Receive Pin 3 Note: SR510 switches pins 2,3 internally HP Func. Gen. Requires a null

More information

2001 by NEC America. All Rights Reserved. Printed in U.S.A.

2001 by NEC America. All Rights Reserved. Printed in U.S.A. These instructions are customized for the CNet Modem V.90 k bps modem (P/N D) contained in the i Modem Kit P/N 9, i Modem Kit P/N 90B, and the i and 0i Modem Kit P/N 9. The modem connected to the system

More information

SO2Rxlat USB Serial to LPT SO2R Translation Board Version 8B firmware

SO2Rxlat USB Serial to LPT SO2R Translation Board Version 8B firmware SO2Rxlat USB Serial to LPT SO2R Translation Board Version 8B firmware Functional Description The PIEXX SO2Rxlat board is a USB device that will translate MK2R style serial commands to the appropriate signal

More information

MMI6070 Quick Start Guide

MMI6070 Quick Start Guide MMI6070 Quick Start Guide Introduction If at any time more information is required on HMI safety and protection ratings, HMI Power, and HMI communication, please refer to the MMI6070 Installation Guide

More information

EZL-200F Application Notes (003) Serial Interface (RS232/RS422/RS485)

EZL-200F Application Notes (003) Serial Interface (RS232/RS422/RS485) Application Notes (003) Serial Interface (RS232/RS422/RS485) Version 2.0 Sollae Systems Co., Ltd. 1. Overview supports three serial interfaces: RS232, RS422, and RS485. You can select the interface you

More information

PCL Port RS-232 Interface Card

PCL Port RS-232 Interface Card PCL-858 8-Port RS-232 Interface Card Copyright Notice This documentation and the software included with this product are copyrighted 2001 by Advantech Co., Ltd. All rights are reserved. Advantech Co.,

More information

DGH A3000 Configuration Guide For use with DGH Modules

DGH A3000 Configuration Guide For use with DGH Modules DGH A3000 Configuration Guide For use with DGH Modules Revision Date: 12/07/05 Version: 1.00 Contact Information: http://www.dghcorp.com Ph: (603) 622-0452 Fax: (603) 622-0487 Mailing Address: DGH Corporation

More information

Starter Guide Version Sphinx Access Control System

Starter Guide Version Sphinx Access Control System TC3XYMT/TC3XYNT Starter Guide Version 1.04.1 Sphinx Access Control System Page 1 1. Controller and Reader wiring...3 2. Connect the controller to PC...4 2.1. Setup the ID of Controller...4 2.2. Connect

More information

CMM 900-3W USER GUIDE

CMM 900-3W USER GUIDE CMM 900-3W USER GUIDE AMPS Cellular Modem Module (3W) Page 1 of 1 Table of Contents 1. PRODUCT OVERVIEW...3 1.1 Features:... 3 1.2 Serial Port Pins:... 5 1.3 Applications:... 5 1.4 Your package includes:...

More information

Ethernet Serial Server

Ethernet Serial Server Ethernet Serial Server Users Manual Eport-101, Eport-102, Eport-104, Eport108 1 INTRODUCTION... 1 1.1 FEATURES... 1 1.2 PRODUCT SPECIFICATIONS... 2 1.3 DEFAULT SETTINGS... 3 2 COMMUNICATION MODES... 4

More information

USB Port USB Serial DB-9 RS-232 Adapter FTDI Chipset. Product Manual. Coolgear Version 1.0 January 2018 Model Number: USB2-4COM-M

USB Port USB Serial DB-9 RS-232 Adapter FTDI Chipset. Product Manual. Coolgear Version 1.0 January 2018 Model Number: USB2-4COM-M USB 2.0 4-Port USB Serial DB-9 RS-232 Adapter FTDI Chipset Product Manual Coolgear Version 1.0 January 2018 Model Number: USB2-4COM-M 2 USB2-4COM-M PRODUCT MANUAL Revision History Revision Date Author

More information

Serial to LANC Adapter User s Guide

Serial to LANC Adapter User s Guide Serial to LANC Adapter User s Guide Thank you for purchasing our controller product. The following information will help you successfully connect this controller board and get it running in your application.

More information

RS-232/422/485 to Copper or Fiber. Ethernet Converter. User s Manual

RS-232/422/485 to Copper or Fiber. Ethernet Converter. User s Manual RS-232/422/485 to Copper or Fiber Ethernet Converter User s Manual Table Of Contents TABLE OF CONTENTS... 1 INTRODUCTION... 3 PRODUCT OVERVIEW... 3 PRODUCT FEATURES... 3 PACKING LIST... 4 LED INDICATORS...

More information

User Manual VScom PCI Cards VScom Industrial Card

User Manual VScom PCI Cards VScom Industrial Card User Manual VScom PCI Cards VScom Industrial Card Edition: July 2011 Tel: +49 40 528 401 0 Fax: +49 40 528 401 99 Web: www.visionsystems.de Support: service@visionsystems.de The software described in this

More information

Parallel to Serial and Serial to Parallel Converter CE Model 232SPS2 Documentation Number 232SPS2-3903m

Parallel to Serial and Serial to Parallel Converter CE Model 232SPS2 Documentation Number 232SPS2-3903m Parallel to Serial and Serial to Parallel Converter CE Model 232SPS2 Documentation Number 232SPS2-3903m This product designed and manufactured in Ottawa, Illinois USA of domestic and imported parts by

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

USER MANUAL HPS-120. About this product: Your Communications Solutions Provider

USER MANUAL HPS-120. About this product:  Your Communications Solutions Provider Your Communications Solutions Provider www.industrial-grade-modem.com USER MANUAL HPS-120 About this product: Industrial Grade Modems works to provide you with reliable, easy to use, wireless serial communications

More information

Product Manual. USB BAY-4 Port Serial DB- 9 RS-232 Adapter with FTDI Chipset. Coolgear, Inc. Version 1.1 September 2017 Model Number: USBG-BAY4

Product Manual. USB BAY-4 Port Serial DB- 9 RS-232 Adapter with FTDI Chipset. Coolgear, Inc. Version 1.1 September 2017 Model Number: USBG-BAY4 USB BAY-4 Port Serial DB- 9 RS-232 Adapter with FTDI Chipset Product Manual Coolgear, Inc. Version 1.1 September 2017 Model Number: USBG-BAY4 2 USBG-BAY4 Product Manual Revision History Revision Date Author

More information

Installation Guide of Hi-Speed USB to Octal RS-232/422/485 Adapter

Installation Guide of Hi-Speed USB to Octal RS-232/422/485 Adapter Installation Guide of Hi-Speed USB to Octal RS-232/422/485 Adapter Introduction The USB to Octal Serial Adapter is designed to make serial port expansion quick and simple. Connecting to a USB port on your

More information

6 foot USB to RS-232 Serial Adapter DB-9 Male, FTDI Chipset. Product Manual. Coolgear Version 1.0 January 2018 Model Number: USBG-232MM

6 foot USB to RS-232 Serial Adapter DB-9 Male, FTDI Chipset. Product Manual. Coolgear Version 1.0 January 2018 Model Number: USBG-232MM 6 foot USB to RS-232 Serial Adapter DB-9 Male, FTDI Chipset Product Manual Coolgear Version 1.0 January 2018 Model Number: USBG-232MM 2 USBG-232MM PRODUCT MANUAL Revision History Revision Date Author Comments

More information

LM058 Bluetooth Serial Adapter SMA Antenna 100m m Range SPP GAP + Wireless DTR DSR RTS CTS

LM058 Bluetooth Serial Adapter SMA Antenna 100m m Range SPP GAP + Wireless DTR DSR RTS CTS LM0 Bluetooth Serial Adapter SMA Antenna Features The can communicate with another Bluetooth serial adapter or Bluetooth devices such as laptops, desktops, PDA s or mobile phones. Supports Bluetooth Serial

More information

USER S MANUAL. PH232Ex1. #1 RS-232 Serial Port to Ethernet, Terminal Server/Client. Doc No: PH232Ex1-UM-001 IPEX. (IP Electronix)

USER S MANUAL. PH232Ex1. #1 RS-232 Serial Port to Ethernet, Terminal Server/Client. Doc No: PH232Ex1-UM-001 IPEX. (IP Electronix) USER S MANUAL PH232Ex1 Doc No: PH232Ex1-UM-001 #1 RS-232 Serial Port to Ethernet, Terminal Server/Client IPEX (IP Electronix) Contents 1. INTRODUCTION... 3 2. SPECIFICATIONS... 3 3. PACKAGE CHECKLIST...

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

The Analyst. RS422/RS232 Tester. (Standard Model) User Manual

The Analyst. RS422/RS232 Tester. (Standard Model) User Manual 12843 Foothill Blvd., Suite D Sylmar, CA 91342 818 898 3380 voice 818 898 3360 fax www.dnfcontrolscom The Analyst RS422/RS232 Tester (Standard Model) User Manual Manual Revision 102506 Table of Contents

More information

Lantech LSC-1102B SERIAL TO TCPIP CONVERTER. User Manual

Lantech LSC-1102B SERIAL TO TCPIP CONVERTER. User Manual Lantech LSC-1102B SERIAL TO TCPIP CONVERTER User Manual V1.0 Sep 2016 Table of Contents 1. Introduction 3 Overview 4 Product Specifications 8 2. Description & Installation 10 Product Panel Views 10 LED

More information

Select a Data Communication Interface

Select a Data Communication Interface Printer Setup and Operation Select a Data Communication Interface Select a Data Communication Interface You may connect your print engine to a computer using one or more of the available connections. The

More information

USB-2COM-BB USER S MANUAL

USB-2COM-BB USER S MANUAL USB-2COM-BB USER S MANUAL 2017 May Edition Titan Electronics Inc. Web: www.titan.tw The computer programs provided with the hardware are supplied under a license. The software provided should be used only

More information

USBG-8COM-PRO 8-Port USB to RS-232, 422, 485 Auto Setup Adapter Manual. Features & Specifications. Specifications

USBG-8COM-PRO 8-Port USB to RS-232, 422, 485 Auto Setup Adapter Manual. Features & Specifications. Specifications USBG-8COM-PRO 8-Port USB to RS-232, 422, 485 Auto Setup Adapter Manual The USBG-8COM-PRO 2-Port Series Industrial I/O Adapters are advanced USB to Serial Adapters that connect to 1, 2, 4 or 8 RS- 232/422/485

More information

Communication adapter RS232 over the Wi-Fi ELO E231. User manual

Communication adapter RS232 over the Wi-Fi ELO E231. User manual Communication adapter RS232 over the Wi-Fi ELO E231 User manual Table Of Content: 1.0 Introduction...3 1.1 Application...3 2.0 How does it works?...4 3.0 Installation...4 3.1 Wi-Fi connection...4 3.2 RS-232

More information

User Manual A08. User Manual

User Manual A08. User Manual A08 TABLE OF CONTENTS TABLE OF CONTENTS... 1 1. INTRODUCTION... 2 1.1. Key Features... 3 1.2. OS Requirement... 4 1.3. Specification... 4 1.4. Packing List... 4 2. OVERVIEW... 5 2.1. LED Definition...

More information

RS-232 Driver Module

RS-232 Driver Module RS-232 Driver Module Low Cost TTL to RS-232 Adapter DCE (SKU #30000) DTE (SKU #30010) Transmit and receive RS-232 Data Can be mounted on any solderless breadboard, or hard-wired Reconfigurable for DCE

More information

Product Manual. Single Port RS-232 USB Serial Adapter Optical- ISO Surge Protection. Coolgear, Inc. Version 1.1 March 2018 Model Number: USB-COM-Si-M

Product Manual. Single Port RS-232 USB Serial Adapter Optical- ISO Surge Protection. Coolgear, Inc. Version 1.1 March 2018 Model Number: USB-COM-Si-M Single Port RS-232 USB Serial Adapter Optical- ISO Surge Protection Product Manual Coolgear, Inc. Version 1.1 March 2018 Model Number: USB-COM-Si-M 2 USB-COM-Si-M Product Manual Revision History Revision

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

General Specifications

General Specifications General Specifications GS 48D50Z00-00E-N C0-950-00 Basic Communication System ProSafe-COM A major part of this functionality is mapped upon an industrial PC, thus representing ProSafe- COM. The basic hardware

More information

EX-6014WI RS232 to WiFi Wireless Adapter, w/ Mounting Kit

EX-6014WI RS232 to WiFi Wireless Adapter, w/ Mounting Kit EX-6014WI RS232 to WiFi Wireless Adapter, w/ Mounting Kit Thank you for purchasing this RS232 to WiFi Wireless Adapter (hereinafter referred to as WiFi-Adapter ), it is designed to communicate with RS232

More information

Quick Start Guide to the SmarTouch TM Controller

Quick Start Guide to the SmarTouch TM Controller Quick Start Guide to the SmarTouch TM Controller Version 1.0 (SmarTouch Controller with Optional Bezel) Table of Contents Introduction 2 Getting to Know Your SmarTouch Hardware 2 Overview of the SmarTouch

More information

Introduction & Specifications of Hi-Speed USB to Serial Adapters

Introduction & Specifications of Hi-Speed USB to Serial Adapters Introduction & Specifications of Hi-Speed USB to Serial Adapters The USB Serial Adapters consist of the following models: USB Single Serial Adapter (ES-U-1001, ES-U-1001-A) USB Single Serial Adapter (ES-U-1001-M,

More information

+ (5~27 VDC) GND. Bluetooth V4.2 BLE RS-232 Serial Adapter. Model: BLE-232D-E. 1. Package content: BLE RS-232 adapter

+ (5~27 VDC) GND. Bluetooth V4.2 BLE RS-232 Serial Adapter. Model: BLE-232D-E. 1. Package content: BLE RS-232 adapter 1. Package content: BLE RS-232 adapter Bluetooth V4.2 BLE RS-232 Serial Adapter Model: BLE-232D-E Package Contents: BLE RS-232 adapter x 1 A4 User manual x 1 Mini USB Cable x 1 White Box: 11 x 6 x 5 (cm)

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

EMERALD-MM-8P. 8-Channel Software Programmable Protocol. Serial Port PC/104 TM Module. User Manual V1.20

EMERALD-MM-8P. 8-Channel Software Programmable Protocol. Serial Port PC/104 TM Module. User Manual V1.20 EMERALD-MM-8P 8-Channel Software Programmable Protocol Serial Port PC/104 TM Module User Manual V1.20 Copyright 2005, 2008, 2011 DIAMOND SYSTEMS CORPORATION 555 Ellis Street Mountain View, CA 94043 Tel

More information

DIABLOSPORT PREDATOR REVISION UPDATE INSTRUCTIONS

DIABLOSPORT PREDATOR REVISION UPDATE INSTRUCTIONS DIABLOSPORT PREDATOR REVISION UPDATE INSTRUCTIONS This page contains instructions that will guide you through the process of updating the DiabloSport Predator to the latest software revision available.

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

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

Wrenchman, Inc Old Hwy. # 8 Suite # 122 New Brighton, Minnesota (651)

Wrenchman, Inc Old Hwy. # 8 Suite # 122 New Brighton, Minnesota (651) Wrenchman, Inc. 1801 Old Hwy. # 8 Suite # 122 New Brighton, Minnesota 55112 (651) 638-9012 468X Interface Cable Specifications The Interface Cable emulates the Async RS-232 logical interface supported

More information

Programming in the MAXQ environment

Programming in the MAXQ environment AVAILABLE The in-circuit debugging and program-loading features of the MAXQ2000 microcontroller combine with IAR s Embedded Workbench development environment to provide C or assembly-level application

More information

ESC(LP)-100. Eight Channel Low Profile RS-232 Asynchronous Communications Adapter. for PCI bus. User's Manual

ESC(LP)-100. Eight Channel Low Profile RS-232 Asynchronous Communications Adapter. for PCI bus. User's Manual ESC(LP)-100 Eight Channel Low Profile RS-232 Asynchronous Communications Adapter for PCI bus User's Manual QUATECH, INC. TEL: (330) 655-9000 5675 Hudson Industrial Parkway FAX: (330) 655-9010 Hudson, Ohio

More information

Cable Specifications. Interface Specifications. Fiber-Optic Specifications APPENDIXB

Cable Specifications. Interface Specifications. Fiber-Optic Specifications APPENDIXB APPENDIXB This appendix lists the cable specifications for supported modules on the Cisco 7600 series router. The following signal summaries are contained in this appendix: Interface Specifications, page

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

QSC(LP)-100. User's Manual

QSC(LP)-100. User's Manual QSC(LP)-100 Four Channel Low Profile RS-232 Asynchronous Communications Adapter for PCI bus User's Manual QUATECH, INC. TEL: (330) 655-9000 5675 Hudson Industrial Parkway FAX: (330) 655-9010 Hudson, Ohio

More information

U C H L T. DSP-Board C32F. Features for DSP Board C32F

U C H L T. DSP-Board C32F. Features for DSP Board C32F HOLE35 RS232 9600 BOD RS232 DSUB9M CONNECTOR 2X32 TI DSP LINK 10 MBOD HOLE35 R U C H DSP-Board C32F L T D (C) RUCH SYSTEM LTD., 1998. DSP SERVOCONTROLLER BOARD FOR EUROBUS. RS422R PAL EPROM 64K8-12V +12V

More information

SERVICE INSTRUCTION. Updating the firmware and software on the RCS-2

SERVICE INSTRUCTION. Updating the firmware and software on the RCS-2 SERVICE INSTRUCTION SI-09-04.1 Replaces (SI-09-04) March 2013 SERVICE INSTRUCTION Updating the firmware and software on the RCS-2 Important Note: It is highly recommended that all parameter data be backed

More information

USB Connectivity. USB Connectivity

USB Connectivity. USB Connectivity Connectivity Product Selection Guides -to-serial Server Selection Guide.......................................-2 Hub Selection Guide................................................-4 -to-serial Converters

More information

D8000 SERIES QUICK START GUIDE

D8000 SERIES QUICK START GUIDE D8000 SERIES QUICK START GUIDE Version 1.0 Overview The D8000 series modules require a DC Voltage power supply, a USB cable and an unused computer USB port for proper operation. Connecting the D8000 series

More information

+ (5~27 VDC) GND. Bluetooth V4.1 BLE RS-232 Serial Adapter. Model: BLE-232B. 1. Package content: BLE RS-232 adapter

+ (5~27 VDC) GND. Bluetooth V4.1 BLE RS-232 Serial Adapter. Model: BLE-232B. 1. Package content: BLE RS-232 adapter Bluetooth V4.1 BLE RS-232 Serial Adapter 1. Package content: BLE RS-232 adapter Model: BLE-232B Package Contents: BLE RS-232 adapter x 1 Screw x2, Screw nut x 2 A4 User manual x 1 Mini USB Cable x 1 White

More information

EX & EX-45362IS 2S RS232/422/485 3-in-1 Serial PCIe Card

EX & EX-45362IS 2S RS232/422/485 3-in-1 Serial PCIe Card EX-45362 & EX-45362IS 2S RS232/422/485 3-in-1 Serial PCIe Card Congratulation on your purchasing this high performance 2-Port RS232/422/485 3-in-1 Serial PCIe Host Adapter. The adapter is high speed PCIe

More information

SitePORTAL Lite TA-SPL32-R48

SitePORTAL Lite TA-SPL32-R48 SitePORTAL Lite TA-SPL32-R48 Quick Connect Guide The TA-SPL32-R48 is a 19 inch, 2 RU rack mountable siteportal Lite (spl). It comes with 8 analog inputs, 8 temperature inputs (sensors sold separately),

More information

PCIe-400 USER S MANUAL

PCIe-400 USER S MANUAL PCIe-400 USER S MANUAL 2017 May Edition Titan Electronics Inc. Web: www.titan.tw The computer programs provided with the hardware are supplied under a license. The software provided should be used only

More information

Homework. Reading. Continue mp1. Labs. Tokheim, Section Questions? Continue labs with your assigned section

Homework. Reading. Continue mp1. Labs. Tokheim, Section Questions? Continue labs with your assigned section Homework Reading Tokheim, Section 13-6 Continue mp1 Questions? Labs Continue labs with your assigned section 1 I/O Devices Examples of I/O Devices Serial ports Parallel ports Floppy, Zip, and hard disk

More information

EasySYNC Ltd. USB to Serial Converters Manual

EasySYNC Ltd. USB to Serial Converters Manual EasySYNC Ltd Document Reference No.: ES_000061 Issue Date: 2011-08-23 The ES-U-xxxx-x adapters are a series of USB Serial Converters from EasySYNC Ltd. They provide a simple method of adapting legacy RS-232

More information

Model: CR3000 Series. Compact Cash Drawers. Compact, with Small Footprint USER MANUAL

Model: CR3000 Series. Compact Cash Drawers. Compact, with Small Footprint USER MANUAL Model: CR3000 Series Compact Cash Drawers Compact, with Small Footprint USER MANUAL NOTICE The manufacturer of the POS cash drawer makes no representations or warranties, either expressed or implied, by

More information

USB to RS-232/RS422/485. US-101-I USB To Serial Operation Manual

USB to RS-232/RS422/485. US-101-I USB To Serial Operation Manual USB to RS-232/RS422/485 US-101-I USB To Serial Operation Manual First Edition, Jun 2008 Table of Contents 1. Introduction 2 2. Package checklist 3 3. Product Specification 4 4. Product Panel Views Description

More information

User Guide. Date Apr BlueEva+C11/G2. Stollmann. E + V GmbH. User Guide

User Guide. Date Apr BlueEva+C11/G2. Stollmann. E + V GmbH. User Guide Version r02 Date Apr 2009 Author: ta Date saved: 06.04.09 Ref: BlueEva+C11G2_User_Guide_r02.doc Revision: r02 Page 1 of 22 Note This device was developed for the purpose of communication in an office environment.

More information

Soekris Engineering. net4501 series boards and systems. User s Manual

Soekris Engineering. net4501 series boards and systems. User s Manual Soekris Engineering net4501 series boards and systems. User s Manual Vers 0.11 September 26, 2001 Table of Contents 1 INTRODUCTION...4 2 SPECIFICATIONS...5 2.1 Overview... 5 2.2 Bus Expansion... 5 3 BIOS...6

More information

Innovation Technical Handbook InnCharge Call Accounting Step by Step installation guide

Innovation Technical Handbook InnCharge Call Accounting Step by Step installation guide Innovation Technical Handbook InnCharge Call Accounting Step by Step installation guide 2008 Innovation Technologies Worldwide, Inc. All rights reserved. This step by step guide is based on software release

More information

Quick Start Guide. M2M Serial Modem NTC

Quick Start Guide. M2M Serial Modem NTC Quick Start Guide M2M Serial Modem NTC-3000-04 Quick start guide This quick start guide is designed to get you up and running quickly with your new NTC-3000-04 M2M Serial Modem. More advanced set up instructions

More information

How to connect. Go to Tools / Options / Port Settings (in PlusConfig software) and change the COM port to COM 3. Minelec PlusConfig How to connect

How to connect. Go to Tools / Options / Port Settings (in PlusConfig software) and change the COM port to COM 3. Minelec PlusConfig How to connect How to connect PlusConfig How to connect with the Luxom system There are 3 different ways of connecting your computer to the Luxom system: - LOCAL - IP - MODEM LOCAL This means that we use a Luxom serial

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

First Steps. esom/sk5 esom/3517 Embedded Linux Starter Kit

First Steps. esom/sk5 esom/3517 Embedded Linux Starter Kit esom/sk5 esom/3517 Embedded Linux Starter Kit First Steps SSV Embedded Systems Dünenweg 5 D-30419 Hannover Phone: +49 (0)511/40 000-0 Fax: +49 (0)511/40 000-40 E-mail: sales@ssv-embedded.de Document Revision:

More information

CONNECTING YOUR PC TO THE USB EVALUATION BOARD

CONNECTING YOUR PC TO THE USB EVALUATION BOARD OVERVIEW This application note discusses how to solve the problems you may encounter when you interface the Keil dscope debugger to the Intel USB Evaluation Board using RISM. Typically, these problems

More information

Programming and Using the Motorola V.3400 Modem for Remote Operation of the DDF6000

Programming and Using the Motorola V.3400 Modem for Remote Operation of the DDF6000 Programming and Using the Motorola V.3400 Modem for Remote Operation of the DDF6000 1.0 Introduction A Technical Application Note from Doppler Systems April 11, 1999 Version 3.x of the DDF6000, running

More information

MULTICOM. Clarity Hardware. Code/Rev.: M110/80A Date: 8/15/2018. Fax: Petrzilkova 2583/ Prague 5

MULTICOM. Clarity Hardware. Code/Rev.: M110/80A Date: 8/15/2018. Fax: Petrzilkova 2583/ Prague 5 MULTICOM Clarity Hardware ENG Code/Rev.: M110/80A Date: 8/15/2018 Phone: +420 251 013 400 DataApex Ltd. Fax: +420 251 013 401 Petrzilkova 2583/13 clarity@dataapex.com 158 00 Prague 5 www.dataapex.com The

More information

I/O Interface DNA300

I/O Interface DNA300 DNA300 OPERATIONS MANUAL 1 Ring Communications, Inc. Crisis Alert System I/O Interface DNA300 2 DNA300 OPERATIONS MANUAL 2006/06/13 DNA300 OPERATIONS MANUAL 3 Contents INTRODUCTION... 5 INSTALLATION...

More information

Volume 1 Hardware Manual

Volume 1 Hardware Manual Volume 1 Hardware Manual Version 1.6 Copyright 2003 egnite Software GmbH. All rights reserved. egnite makes no warranty for the use of its products and assumes no responsibility for any errors which may

More information

STEP X - Name of Step QUICK START GUIDE SP385A-R3, SP390A-R3 USB TO RS CONVERTER 24/7 TECHNICAL SUPPORT AT OR VISIT BLACKBOX.

STEP X - Name of Step QUICK START GUIDE SP385A-R3, SP390A-R3 USB TO RS CONVERTER 24/7 TECHNICAL SUPPORT AT OR VISIT BLACKBOX. STEP X - Name of Step QUICK START GUIDE SP385A-R3, SP390A-R3 USB TO RS CONVERTER 24/7 TECHNICAL SUPPORT AT 877.877.2269 OR VISIT BLACKBOX.COM STEP 1 - Package Includes/System Requirements PACKAGE INCLUDES

More information

MS Protocol Converter. User Manual. Firmware version 2.0 ISI. Instrumental Solutions, Inc.

MS Protocol Converter. User Manual. Firmware version 2.0 ISI. Instrumental Solutions, Inc. MS1-2150 Protocol Converter User Manual Firmware version 2.0 ISI Instrumental Solutions, Inc. WWW.ISIDEV.NET Introduction The MS1-2150 protocol converter can take readings from 1 or more ModBus registers

More information

5600 Series. 8 and 16-port Serial Device Servers. Features. Internet Readiness for up to 16 Serial Devices

5600 Series. 8 and 16-port Serial Device Servers. Features. Internet Readiness for up to 16 Serial Devices 5600 Series 8 and 16-port Features Up to 16 ports supporting RS-22, RS-422, or RS-485 operation Compact desktop model or standard 19-inch rackmount model Auto-detecting 10/100 Mbps Ethernet 15 KV ESD surge

More information

BLE232: Manual Copyright 2014 taskit GmbH

BLE232: Manual Copyright 2014 taskit GmbH BLE232 Manual BLE232: Manual Copyright 2014 taskit GmbH BLE232 All rights to this documentation and to the product(s) described herein are reserved by taskit GmbH. This document was written with care,

More information

Getting Started with your D3000M Series Module

Getting Started with your D3000M Series Module Getting Started with your D3000M Series Module This document contains step-by-step instructions to quickly connect and communicate with your D3000M modules. The modules require a one-time configuration

More information

Chapter 2 ICB Architecture Chapter 3 Board Components GPIO Interface RS-232 Interface RS-485 Interface...

Chapter 2 ICB Architecture Chapter 3 Board Components GPIO Interface RS-232 Interface RS-485 Interface... 1 CONTENTS Chapter 1 Introduction... 3 1.1 Features...3 1.2 About the Kit...4 1.3 Getting Help...5 Chapter 2 ICB Architecture... 6 2.1 Layout and Components...6 2.2 Block Diagram of the ICB...7 Chapter

More information