MiR Serial Interface. Technical Documentation

Size: px
Start display at page:

Download "MiR Serial Interface. Technical Documentation"

Transcription

1 MiR Serial Interface Technical Documentation Version 1.4 Software release 1.5 Release date:

2 Table of contents 1 Introduction Serial Protocol Specifications Installing a USB to Serial Adapter Description of error scenarios Automatic activation of the Serial Interface node Interface protocol Command set Commands Special notes Set Register -!R Get Register -?R Get Current Position -?P Get Status -?S Registers Web interface for the Registers Examples Pause/Continue/Abort button Using the registers as synchronization between MiR100 and a PLC Interfacing using PuTTy Changelog Copyright Mobile Industrial Robots Page 2 of 21

3 1 Introduction The MiR Serial interface is a generic interface protocol, suitable for interfacing e.g. PLCs to the MiR mobile robot platform. The interface offers capabilities to set new waypoints, start and stop robot mission execution as well as making bit integer and bit floating point registers available for the user for storing e.g. process variables, mission parameters etc. The registers can be used as a shared memory interface for data sharing between the mobile robot, the device connected through the serial port and devices using the build-in REST interface. Through this device, the system can be programmed e.g. to wait for a certain register to be set before proceeding on a mission, useful for e.g. waiting for a PLC controlled process to finish or a button to be pressed before continuing. In addition to this, the interface offer the possibility of a limited interaction with the Mission subsystem of the MiR100 robot as it offers the possibility of e.g. retrieving a list of available Missions and queueing, starting and aborting Missions in the Mission queue. 2 Serial Protocol 2.1 Specifications The parameters of the Serial Interface is as listed in the table below. The values marked in bold are the default values. The parameters of the interface can be configured by editing a configuration file, for how to do that, please refer to section 2.2. Parameter Specification Serial Interface type RS232 Baud Rate Standard 1200, 2400, 4800, 9600, 19200, 38400, 57600, User specific Data Bits 7 or 8 Stop Bits 0, 1 or 2 Parity None, Even, Odd Synchronization (CTS/RTS) Not supported Table 1 - MiR Serial Interface specification parameters The MiR100 support a wide array of USB to RS232 converters out of the box. MiR recommend buying a FTDI-based USB to RS232 from In case of doubt, contact MiR Technical Support at support@mir-robots.com. 2.2 Installing a USB to Serial Adapter This section describes how to install and configure a USB to Serial Adapter for use with the MiR Serial Interface. A prerequisite for the process is that you have a compatible USB to Serial Adapter available. The USB to Serial Adapters can be installed either on the top mounted USB ports if the physical layout of the top module allows it, or in one of the USB ports of the embedded PC found inside the MiR100 platform. If you need to connect to a USB port of the embedded PC, be careful not to pull cables, connectors etc. as, although they are fastened securely at time of delivery of the MiR platform, may come loose if subjected to physical strain. Copyright Mobile Industrial Robots Page 3 of 21

4 Step Instruction Illustration 1 Turn on the robot. 2 Log onto the robots WIFI using external PC/tablet 3 Open browser at 4 Navigate through the menu: Service -> Configuration -> System settings -> MiR Setup 5 Plug in the USB to Serial Adapter 6 Press the Setup serial adapter button 7 Check command response at the bottom of the page Success scenarios: Successfully configured serial adapter using VendorID=xxxx, ProductID=yyyy and Serial=zzzzzzzz Serial adapter is already configured with this serial number: zzzzzzzz Error scenarios: The serial number is already used for another rule: SYMLINK+="S300Back" Copyright Mobile Industrial Robots Page 4 of 21

5 8 Unplug the USB to Serial Adapter and insert it again to make the changes take effect 9 Navigate through the menu: Service -> Configuration -> System settings -> ROS parameters Last connected USB device on /dev/ttyusb2 is no longer available! Last connected USB device on /dev/ttyusb2 does not contain a valid serial number: 0000:00:1d.0 10 Locate section Serial Interface and modify to desired values. Press the Save button, when all changes are complete Instruction List 1 - Install USB to Serial Adapter Description of error scenarios This section describes how to handle the error scenarios listed in step 7 of the instruction list. The serial number is already used for another rule: SYMLINK+="S300Back" The last connected USB device is already configured for other use (likely for laser scanners). Try to reboot the embedded PC without the serial adapter connected until step 5 and retry configuration. Last connected USB device on /dev/ttyusb2 does not contain a valid serial number: 0000:00:1d.0 The last connected USB device is not a FTDI-based adapter, which is strongly recommended for a robot in production. The adapter can still be used by changing the Serial Port in ROS parameters from the default value /dev/serialadapter to the current port /dev/ttyusb2. The drawback is that the port may change on every startup, and therefore require a reconfiguration of the serial port, which can be avoided by used a FTDI-based adapter. Last connected USB device on /dev/ttyusb2 is no longer available! The last connected USB device has been removed again. Make sure the serial adapter is properly connected at step 5 of the instruction list. Copyright Mobile Industrial Robots Page 5 of 21

6 2.2.2 Automatic activation of the Serial Interface node When using the serial interface, the Serial Interface node is automatically activated. However, you can manually start and stop it under the Launch Menu, which is located under Service/Configuration/Launch Menu. 3 Interface protocol 3.1 Command set There is two basic ways of interacting with the robot over the serial protocol: setting parameters by prefixing a command with!, or getting parameters by prefixing a command with?. Prefix Syntax Command Example explanation Example Response! R<n>#<value> Set Register Set register 101 with value!r101# OK: Register set ! P Pause Signal Pause robot!p OK: Wait called! C Continue Signal Un-Pause robot!c OK: Continue called! GO:<x>,<y>,<theta> Go to point Go to point with!go:2.4,45.2,0.29 OK: Position set coordinates (2.4,45.2) 0.29 radians! GO:<position Go to position Go to position called!go:home OK: Goal position set name> Home! X Abort current Abort current mission!x OK: Mission aborted mission! MA:<Mission name> Append Mission to Mission queue Append Mission Move to List!MA:Move to List OK: Mission appended! MC Clear Mission Queue Clear the Mission queue!mc OK: Mission queue cleared? R<n> Get Register Get value in register 101?R101 OK: R101# ? P Get current position Get current position (X, Y, theta)?p OK: 52.15, 0.81, 1.929? S Get robot status Get Status (platform state, distance traveled, uptime,battery,mode)?s OK: 3, 0.0, 83.87, 25.50, manual? L Get list of available position names? MQ Get Missions in Mission Queue? MA Get name of active Mission? ML Get name of available Missions Table 2- Command Set of the MiR Serial Interface - overview Get list of position names?l OK: Home,FAM,Production Returns the names of the Missions in the Mission queue Returns the name of the active Mission in the Mission queue Returns the names of the available Missions?MQ?MA?ML OK: Call Elevator, Go to Dock, Dock OK: Call Elevator OK: Call Elevator, Go to Dock, Dock, Production, Open Door All commands must be terminated with the Carriage Return character \r with the hexadecimal value of 0x0D. The response send back will be terminated with a Carriage Return character \r as well. Copyright Mobile Industrial Robots Page 6 of 21

7 3.2 Commands Special notes There are a few commands and associated return values of the Command Set found in Table 2 that deserve special attention. The commands are listed in this section for easy reference. As handling of dynamic strings on devices such as PLCs, some of the replies utilize fixed positions for the return values to allow for the device to index directly to the values they require. Please note that the commands are case sensitive and the serial interface will thus not accept lower-case letters as commands Set Register -!R The syntax of the command is!r<n>#<value>\r, with!r being the Set Register command, <n> being the number of the register e.g. 37 and # the value specification character and <value> being the value e.g. 82. In this case, the complete command would be!r37#82\r. For registers , the syntax of the command are basically the same but it allow floating point values. An example of such a command is!r101#3.1459\r for setting register 101 to the value Get Register -?R The syntax of the command is?r<n>\r with?r being the Get Register command and <n> being the register to query for value. An example of such a command is?r101\r to get the value in register 101. The return string of the command is formatted as follows: OK: R%i#%i\r in the case of registers and OK: R%i#%lf\r in the case of registers The register number will be filled with leading zeroes, such that?r7 returns OK: R007#1234\r. Another example of a reply from a floating point register is OK: R101#3.1459\r denoting a value of in register 101. Copyright Mobile Industrial Robots Page 7 of 21

8 3.2.3 Get Current Position -?P By querying with the Get Current Position, it is possible to get the position of the MiR in the internal coordinate system. The units of the coordinate system is meters and the resolution of the positions given are in centimeters. The origin of the coordinate system will be the point where the mapping procedure started. This means that a X/Y position will not necessarily be at a corner of a map but most likely somewhere inside it. Fejl! Henvisningskilde ikke fundet. show the axes of the coordinate system used in the MiR. The X coordinate can be thought of as the longitude of the map, the Y coordinate as the latitude and the Theta as the rotation around the origin versus the X axis measured in radians (multiply by to get degrees). Figure 1 - Coordinate system of the MiR100 The return string of the command is formatted as follows: OK: %7.2lf,%7.2lf,%5.3lf\r, which mean space is reserved for coordinates up to with centimeter precision and rotations with precision of a thousand of a radians. An example of a reply is OK: 52.15, 0.81, 1.929\r, denoting a X coordinate of 52.15, Y coordinate of 0.81 and rotation of radians Get Status -?S State ID State The possible system states of the MiR100 robot are listed in Table 3. 1 Starting The first field of the Get Status reply denotes the system state of the 2 Shutting down robot. During the execution of a mission, the normal state of the robot is 3 Ready 5 i.e. the robot is Executing a mission. 4 Pause 5 Executing By polling with the Get Status command, it is possible to i.e. see if the 6 Aborted robot is in Emergency mode and from that e.g. activate a blinking light 7 Completed on the attached PLC. 8 Docked The status reply from the command is formatted as follows: OK: 9 Docking %2u, %6.1f, %6.2f, %4.2f, %s\r. An example of a status 10 Emergency Stop reply is OK: 3, 0.0, 83.87, 25.50, manual, 11 Manual Control meaning the robot is in state 3 (Ready), it has moved 0.0m, the uptime is 12 Error minutes, the battery voltage is 25.50V and its operating in manual Table 3 - MiR100 System states mode. Copyright Mobile Industrial Robots Page 8 of 21

9 3.3 Registers The Serial Interface offer 200 custom registers. Registers are 32bit integer registers, while registers are 64bit floating point registers. Writing floating point values to integer registers will truncate the values and loose the information found in the value after the decimal point. The registers can be used for e.g. persistent storage of values or interacting with Missions of the MiR platform. For an example of this, please refer to section 4.2 and 4.3. If you are using the registers for synchronization between the MiR100 and e.g. a PLC, please note that the Mission subsystem of the MiR100 will accept a difference in values of lower than 10-5 as a match due to internal handling of the numbers. This means that if a Mission is programmed to wait for a value of in a register and the value stored by the PLC is , the values are accepted as a match. It is recommended only to use the integer registers as synchronization registers Web interface for the Registers To allow for further customization, synchronization and editing, the Registers are available from the normal web interface of the MiR100. From the webpage, it is possible to use the Quick edit button to enter a value for a specific register, or selecting the individual register to edit it manually. The instruction list below demonstrate both procedures. Step Instruction Illustration 1 From the MiR homepage, go to Service->Configuration and press the PLC Registers button. 2 Press the Quick edit button and input 2 in the ID field and 20 in the value field. Press the Edit button. The Editing window closes and Register 2 now has the value 20. Copyright Mobile Industrial Robots Page 9 of 21

10 3 Press the Edit button next to in the 1 row. The value in the ID field is automatically filled by the system. Input 10 in the Value field and press the Edit button. The Edit PLC register window closes and the value for Register 1 is updated. Copyright Mobile Industrial Robots Page 10 of 21

11 4 Query the register values by e.g. a PLC or a terminal (in this case a PuTTy terminal) to see the register values. Copyright Mobile Industrial Robots Page 11 of 21

12 4 Examples In this section, a series of examples will be listed to serve as inspiration to the users of the MiR Serial Interface. They should be regarded as demonstrations of the interface only, and thus not regarded as complete in terms of feedback to the users etc., as they focus on the communication over the serial interface. For illustration of the examples, the CLICK PLC C0-00DD1-D and associated programming software from AutomationDirect has been used Pause/Continue/Abort button Consider the case when a user would like to be able to pause, resume or abort the robot during execution of a mission. This could be beneficial if e.g. the robot is entering an area in which personnel are operating heavy equipment and due to the risk of equipment damage, it should wait until they are finished before continuing. If the operation of heavy equipment takes too long, the personnel would like to be able to cancel the current mission and reassign it to go back to the dock for assignment to new missions. This example can be realized with a PLC, on which two buttons are connected: one for controlling the pause/continue/abort operation and one for commanding the MiR100 to return to the Dock position after the abort signal has been send over the serial interface. The operation of the program is as follows: 1. When the StopButton is pressed, a timer starts. If the timer is pressed more than 5 seconds, the abort signal!x is send over the serial interface 2. If the StopButton (X1) is activated and pause has not been send, the!p signal is send over the serial interface 3. If the StopButton is released and the abort timer has not fired, the continue signal!c is send over the serial interface 4. If the abort signal has been send and the DockButton has been pressed, the Go To Position with position Dock is send!go:dock. Figure 2 - CLICK PLC Ladder program of Pause/Continue/Abort example 1 _Micro_Brick)/PLC_Units/C0-00DD1-D Copyright Mobile Industrial Robots Page 12 of 21

13 4.2 Using the registers as synchronization between MiR100 and a PLC One of the key features of the MiR Serial Interface is the ability to share information between the MiR100 robot and peripheral devices connected via the MiR Serial Interface such as e.g. PLCs using one or more of the 200 available registers. These registers can be assigned with values by the PLC and used for triggering events in the MiR100 programming interface, useful for signaling when a PLC based process is finished and the MiR100 can proceed on its mission. The procedure of the program is a follows: 1. MiR100: The MiR100 drives to the ProcessEquipment position 2. MiR100: The Register 10 is set to value 1 to signal the top mounted PLC to start operation. 3. MiR100: The robot waits while monitoring the status of Register 10. When the value of the Register is 0, it proceeds to position OffloadPosition 4. PLC: The subroutine Proc MiR SerialInterface monitors the serial interface, send periodic commands to get the value of Register 10 (?R#10 ) and parses the incoming string. The value of Register 10 is put into the register DS1. 5. PLC: If this value is equal to 1, the StartSignal register is activated which in turn activates the, in this case abstract, process of the TopModuleProcess subroutine. This process uses the PLC register C2 to signal when the process is complete. 6. PLC: When the process is complete and register C2 is enabled, the PLC writes the value 0 to register 10 with the command!r10#0. 7. MiR100: The robot observes that Register 10 is returned to value 0, and proceeds to position OffloadPosition Figure 3 - CLICK PLC ladder diagram example of using the registers as synchronization between MiR100 and a PLC. Please note that teh process of parsing the incoming strings is now shown Figure 4 - Mission of the process as described in the list. The first entry is the "Move To Known Postion" with the ProcessEquipment position. After this, the Mission sets Register 10 to 1 as the start signal to the PLC. The "Wait for PLC Register" monitors Register 10 until it reaches the value 0. After this, the MiR100 continues to position OffloadPosition. 4.3 Interfacing using PuTTy The serial interface protocol is a generic protocol which use extends beyond the realm of PLCs. If the users wish to use it with e.g. a PC equipped with a RS232 port, it is possible either through custom software or by commercially or freeware software available from a wide range of vendors and organizations. Copyright Mobile Industrial Robots Page 13 of 21

14 An example of such a piece of software is the PuTTy 2 client. Originally written with SSH and Telnet clients in mind, the program is also able to handle serial connections in the terminal. Other terminal programs such as e.g. Windows Hyperterminal, Docklight, RealTerm or similar can also be used. Please note that the PuTTy terminal program does not offer the use of delete or backspace characters in the terminal window so any commands with spelling errors will not be accepted. The example will demonstrate how to interact with the Mission subsystem of the MiR100 platform. The example assume that three Missions called Go Home, Dock and Call Elevator have been created using the MiR web interface and the current Mission queue is empty. Step Instruction Illustration 1 Download the PuTTy executable from e.g. latest/x86/putty.exe to the Desktop or wherever you wish. 2 Open the program with sufficient user privileges 3 Click the Serial button 2 Copyright Mobile Industrial Robots Page 14 of 21

15 4 Enter the correct parameters for the serial port in the Serial line and Speed fields. In this case COM10 and the default speed of 19200baud. 5 Optional: Click Terminal in the Category list. Put a checkmark in the Implicit LF in every CR to make the terminal put in an extra Line Feed character when a Carriage Return is received. Click the Force on button in the Local echo field of the Line discipline options block to make the terminal echo user inputs. Copyright Mobile Industrial Robots Page 15 of 21

16 6 Click the Open button. The PuTTy terminal will open. Copyright Mobile Industrial Robots Page 16 of 21

17 7 Input?ML in the terminal and press Enter to get the currently available Missions. The MiR responds with the Missions. In this case Go Home, Dock and Call Elevator. 8 Input?MQ in the terminal and press Enter to get the Missions in the queue. The MiR respond with an empty list OK: as there are no Missions in the queue at this point. 9 Input!MA: Go Home to queue the Go Home Mission to the Mission queue and automatically start the Mission. The MiR responds with OK: Mission appended Copyright Mobile Industrial Robots Page 17 of 21

18 10 Input?MA to view the currently active Mission in the Mission queue. The MiR respond with OK: Go Home 11 Input!MA: Dock and press enter to append the Dock Mission to the queue. The MiR respond with OK: Mission appended 12 Input?MQ to get the Mission queue. The MiR responds with OK: Go Home,Dock Copyright Mobile Industrial Robots Page 18 of 21

19 Input?MA and press enter to get the currently executing Mission from the Mission queue. The MiR respond with OK: Go Home Input!X and press Enter to abort the currently running Mission. The MiR respond with OK: Mission aborted Input?MA and press Enter to view the currently running Mission. The MiR respond with OK: Dock as the Go Home Mission was aborted. Copyright Mobile Industrial Robots Page 19 of 21

20 Input!MC and press Enter to clear the Mission queue. The MiR respond with OK: Mission queue cleared Input?MQ and press Enter to view the Mission queue. The MiR return an empty list with the response OK: Copyright Mobile Industrial Robots Page 20 of 21

21 5 Changelog Version Date Changes Document created Document updated Document for review Document updated more descriptions of commands an replies Images added. Document for review Review and updated section for installing serial adapter Corrected default value for stop bit to Added subsection for checking that the Serial interface node is running in the Launch menu Changed subsection Node automatically starts Added new link to FTDIchip.com Copyright Mobile Industrial Robots Page 21 of 21

Tablet interface. Technical Documentation

Tablet interface. Technical Documentation Tablet interface Technical Documentation Documentation for software release 1.1.4 Release date: 18.12.2015 Table of contents 1 Introduction...3 2 Starting up the tablet interface...3 2.1 Robot arriving

More information

Mission interface. Technical Documentation

Mission interface. Technical Documentation Mission interface Technical Documentation Version 1.6 Software release 1.7 Release date: 16.09.2016 Table of contents 1 Introduction...3 2 Missions...3 2.1 Examples of creating and using a mission...5

More information

Doug Fleenor Design, Inc. RS-232 to DMX512 Interface, 2 Generation. March 8, 2010 (Software V1.2)

Doug Fleenor Design, Inc. RS-232 to DMX512 Interface, 2 Generation. March 8, 2010 (Software V1.2) Doug Fleenor Design, Inc. nd RS-232 to DMX512 Interface, 2 Generation March 8, 2010 (Software V1.2) The second generation RS-232 to DMX512 interface has numerous features beyond the original device. The

More information

SIN-11-USB USERS GUIDE SIN-11-USB USERS GUIDE

SIN-11-USB USERS GUIDE SIN-11-USB USERS GUIDE SIN-11-USB USERS GUIDE Revision Date: 05/06/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 Overview... 3 Getting Started... 4 Hardware... 6 Demo Power-up...

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

InfoTag KE28xx Communications for 186 CPU Firmware Version 4

InfoTag KE28xx Communications for 186 CPU Firmware Version 4 InfoTag KE28xx Communications for 186 CPU Firmware Version 4 *KE28xx models include: KE2800, KE2852, KE2853, KE2856 This document applies to printer firmware versions 4.x only. Note that changes made to

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

MiR Bluetooth Box. Technical Documentation

MiR Bluetooth Box. Technical Documentation MiR Bluetooth Box Technical Documentation Version 1.2 Software release 1.5 Release date: 11.04.2016 Table of contents 1 Introduktion...3 1.1 Feedback signal...3 1.2 Indication of relays states...3 2 Dimensions...3

More information

User Manual for TeraRanger Hub Evo

User Manual for TeraRanger Hub Evo User Manual for TeraRanger Hub Evo Hardware revision 10 Firmware revision 100 1/24 Table of contents: 1 Introduction 3 2 Mechanical Integration 3 21 Mechanical Design 3 21 Compatibility with TeraRanger

More information

3 Connecting to a Controller

3 Connecting to a Controller 3 Connecting to a Controller In this chapter Connecting to controllers: Overview 36 Setting up communications for your PC 37 Configuring Modbus communications 37 Modbus communications by modem 39 Configuring

More information

Temperature-Humidity Sensor Configuration Tool Rev. A 1/25/

Temperature-Humidity Sensor Configuration Tool Rev. A 1/25/ Rev. A 1/25/213 172 Contents Contents Temperature-Humidity Sensor Configuration Tool... 3 Read Sensor Screen... 3 Manual Calibration Screen... 4 Register View Screen... 5 Modbus Registers... 6 Reprogram

More information

Tech Memo # Software Engineering. Normal PRIORITY: DATE: April 17 th, 2015

Tech Memo # Software Engineering. Normal PRIORITY: DATE: April 17 th, 2015 Software Engineering Tech Memo #15-0001 PRIORITY: Normal DATE: April 17 th, 2015 TITLE: PRODUCTS AFFECTED: TOOLS REQUIRED: NOTE: INTRODUCTION: How to install and configure Adaptive Sign Server on a Windows

More information

Configuring the LI-1400 Datalogger for Illuminance and Irradiance Studies

Configuring the LI-1400 Datalogger for Illuminance and Irradiance Studies Application Note Configuring the LI-1400 Datalogger for Illuminance and Irradiance Studies Introduction This document describes how to configure and deploy the LI-COR LI-1400 Datalogger (Figure 1) and

More information

Manual 601: : USB/RS232. Specifications. Contents. Options

Manual 601: : USB/RS232. Specifications. Contents. Options Page 1 ATE-601 601: : USB/RS232 I/O Controller - 8 Inputs, 4/8 Relays The ATE-500/600 series is a range of modular I/O controllers. It uses small standardized boards which allows you to configure the system

More information

GSE Scale Systems M660 CUSTOM TRANSMIT

GSE Scale Systems M660 CUSTOM TRANSMIT M660 CUSTOM TRANSMIT A custom transmit is a sequence of characters, control codes and parameter values to be transmitted out a communication port to a peripheral device such as a printer, remote display,

More information

MiR100 Web Interface

MiR100 Web Interface MiR00 Web Interface User Guide Version.7 MiR00.8 Introduction - MiR00 MiR00 is an automatic vehicle that transports items internally in production companies, hospitals, warehouses, malls and other places.

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

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

OPERATING INSTRUCTION. ECOmux 3 - ECOmux 4 - ECOmux 5

OPERATING INSTRUCTION. ECOmux 3 - ECOmux 4 - ECOmux 5 Elektronische Komponenten für die Qualitätssicherung Kundenspezifische Prüf- und Steuergeräte Individuelle messtechnische Lösungen Beratung OPERATING INSTRUCTION ECOmux 3 - ECOmux 4 - ECOmux 5 3-4 - 5

More information

Precision Instruments for Research and Industry. J-KEM Scientific Syringe Pump

Precision Instruments for Research and Industry. J-KEM Scientific Syringe Pump Precision Instruments for Research and Industry J-KEM Scientific Syringe Pump Program Index Program Description Page # Software Installation 3 Hardware Installation 3 The Timed Addition Program The Multi-Reagent

More information

Configuring Terminal Settings and Sessions

Configuring Terminal Settings and Sessions This chapter describes how to manage the terminal settings and sessions on a Cisco NX-OS device. This chapter includes the following sections: Information About Terminal Settings and Sessions, page 1 Licensing

More information

The following steps will allow you to install and quickly begin using DevCom2000:

The following steps will allow you to install and quickly begin using DevCom2000: QUICK START DevCom2000 uses Device Descriptions (DDs) to access data stored in the memory of the smart field device. These DDs are developed by the manufacturer for their products and, in turn, distributed

More information

Attaching the DF 3 USB to the PLC

Attaching the DF 3 USB to the PLC Getting Started Firmware V1003 The DF 3 USB gets power from the 5V supply of the AutomationDirect PLC. In the package is the DF 3 USB and an 18 6-pin cable. The cable can be plugged in with either end

More information

OPERATING MANUAL AND TECHNICAL REFERENCE

OPERATING MANUAL AND TECHNICAL REFERENCE MODEL WFG-D-130 HIGH SPEED DIGITAL 3 AXIS FLUXGATE MAGNETOMETER OPERATING MANUAL AND TECHNICAL REFERENCE December, 2012 Table of Contents I. Description of the System 1 II. System Specifications.. 2 III.

More information

Flex Series User Guide

Flex Series User Guide User Programmable Current 4..20mA Digital RS485 Dual & Single Axis Up to 360º 2016 Flex Series User Guide Sensor Installation, Wiring, Flexware App Instructions Page 1 of 33 Page 2 of 33 Table of Contents

More information

GNOME485. Ethernet to RS485 converter Eas y to use. Security features. Virtual serial port. 2/16/2006 w w w. p a p o u c h.

GNOME485. Ethernet to RS485 converter Eas y to use. Security features. Virtual serial port. 2/16/2006 w w w. p a p o u c h. Ethernet to RS485 converter Eas y to use Security features Virtual serial port 2/16/2006 w w w. p a p o u c h. c o m 0202 G NOME485 Brief Datasheet Created: 1/27/2006 Last update: 2/16/2006 15:29 Numer

More information

TelePACE Studio Ladder Logic Training Manual

TelePACE Studio Ladder Logic Training Manual TelePACE Studio Ladder Logic Training Manual SCADA products... for the distance TelePACE Studio Ladder Editor Training Manual 1999-2009 Control Microsystems Inc. All rights reserved. Printed in Canada.

More information

Aaronia GPS Logger Programming Guide

Aaronia GPS Logger Programming Guide Aaronia GPS Logger Programming Guide Introduction The Aaronia GPS Logger is a battery-powered mobile device to measure and record location and orientation related information from a multitude of sensors:

More information

DSP Terminal V1.5.7 Users Guide

DSP Terminal V1.5.7 Users Guide Faculty of electrical engineering and computer science INSTITUTE OF ROBOTICS DSP terminal V1.5.7 DSP Terminal V1.5.7 Users Guide Feb, 2007 1 Overview Terminal program is used for communication between

More information

VNS2000 Server Software

VNS2000 Server Software VNS2000 Server Software Automated Messaging Interface OEM & Developer Guide Version 1.02 Visiplex, Inc. 2010 VNS2000 Server Software Automated Messaging Interface Copyright The product described in this

More information

Trio Motion Technology 4-2. Motion Perfect v3

Trio Motion Technology 4-2. Motion Perfect v3 MOTION PERFECT V3 4 Trio Motion Technology 4-2 Software Reference Manual Introduction to Motion Perfect 3 Motion Perfect 3 is an Microsoft Windows based application for the PC, designed to be used in conjunction

More information

Integrity Instruments

Integrity Instruments Integrity Instruments P.O. Box 451 Order Phone 800-450-2001 Pine River Minnesota Fax Phone 218-587-3414 56474 USA Tech Phone 218-587-3120 http://www.integrityusa.com 232M300C-CNT 232M300CT-CNT Counter

More information

Webinar Organizers. Ryan Shea. Bruce McDuffee. Joe Ryan. Webinar Moderator. Applications Specialist. Product Manager. Precision Digital Corporation

Webinar Organizers. Ryan Shea. Bruce McDuffee. Joe Ryan. Webinar Moderator. Applications Specialist. Product Manager. Precision Digital Corporation Webinar Organizers Joe Ryan Product Manager Precision Digital Corporation Ryan Shea Applications Specialist Precision Digital Corporation Bruce McDuffee Webinar Moderator Precision Digital Corporation

More information

Modbus ASCII Serial Device Driver Help 2009 Kepware Technologies

Modbus ASCII Serial Device Driver Help 2009 Kepware Technologies Modbus ASCII Serial Device Driver Help 2009 Kepware Technologies 1 Table of Contents 1 Getting Started... 3 Help Contents... 3 Overview... 3 2 Device Setup... 3 Device Setup... 3 Cable Diagram... 4 Modem

More information

Manual. Specifications. Contents. Options

Manual. Specifications. Contents. Options Page 1 ATE-501: USB Input Controller - 8 Inputs The ATE-500/600 series is a range of modular I/O controllers. It uses small standardized boards which allows you to configure the system to your requirements.

More information

Remote Display User Manual

Remote Display User Manual Remote Display User Manual 1 Contents Features... 3 Hardware Overview... 4 Quickstart Guide... 5 Android Application Operation... 6 Launching and Connecting... 6 Main Display... 7 Configuring Channels...

More information

X-SEL Serial Communication Protocol Specification (Format B)

X-SEL Serial Communication Protocol Specification (Format B) X-SEL Serial Communication Protocol Specification (Format B) [Applicable Models] X-SEL-J/K Main Application V0.99 X-SEL-JX/KX Main Application V0.42 TT Main Application V0.18 X-SEL-P/Q Main Application

More information

Manual DTM Digital Pressure Transmitter

Manual DTM Digital Pressure Transmitter TetraTec Instruments GmbH Gewerbestr. 8 71144 Steinenbronn Deutschland E-Mail: info@tetratec.de Tel.: 07157/5387-0 Fax: 07157/5387-10 Manual Digital Pressure Transmitter *** VERSION 1.1 *** Update: 22.11.2006

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

JANUS EXPLORER. Janus Explorer Version 1.4 Quick Guide

JANUS EXPLORER. Janus Explorer Version 1.4 Quick Guide JANUS EXPLORER Version 1.4 Quick Guide Page 1 TABLE OF CONTENTS Introduction... 3 Installation... 3 Software Guide... 6 Send Commands... 8 Responses... 8 SMS and Dial... 8 Modem and SIM Details... 9 Phone

More information

TL2-A Instructions for Use

TL2-A Instructions for Use TL2-A Instructions for Use The TL2-A is an affordable high precision digital thermometer. It has been designed for use in both laboratory and industrial applications. Additional video tutorials and information

More information

User's Manual PLC09 Modbus Converter for PAL-AT Leak Detection System

User's Manual PLC09 Modbus Converter for PAL-AT Leak Detection System User's Manual PLC09 Modbus Converter for PAL-AT Leak Detection System PermAlert ESP, Inc. 7720 Lehigh Ave. Niles, IL 60714 847-966-2190 2 INDEX 1.0 Introduction 4 1.1 Features 4 2.0 Installation 4 2.1

More information

INSTALLATION AND USER GUIDE

INSTALLATION AND USER GUIDE INSTALLATION AND USER GUIDE idialog - Translated from FRA original version (351910C-FR) - DOC REF : 351910C - EN TABLE OF CONTENTS 1 GENERAL SAFETY RULES... 3 2 OVERVIEW... 3 3 CONTENT OF USB CARD... 3

More information

BT LE RN4020 USB Dongle Datasheet

BT LE RN4020 USB Dongle Datasheet BT LE RN4020 USB Dongle Datasheet Introduction BT LE RN4020 Dongle is a USB Stick type device build around Microchip s RN4020 module which provides a fully command based interface to manage the module.

More information

A Practical Exercise for the ADC

A Practical Exercise for the ADC Richard Haberkamp Nikolas Roosevelt A Practical Exercise for the ADC Janusz Zalewski, Ph. D CDA 4170, Data Acquisition & Control Spring 2009 Table of Contents 1. Equipment Connectivity 3 1.1 Required Hardware

More information

USB Indexer USB Indexer for CNC Controls

USB Indexer USB Indexer for CNC Controls USB Indexer USB Indexer for CNC Controls 2009-2011 Calmotion LLC, All rights reserved Calmotion LLC 9909 Topanga Canyon Blvd. #322 Chatsworth, CA 91311 www.calmotion.com -1 2009-2011Calmotion LLC, All

More information

Ethernet to Serial Port Module RS-232/422/485 to Internet Gateway

Ethernet to Serial Port Module RS-232/422/485 to Internet Gateway Ethernet to Serial Port Module RS-232/422/485 to Internet Gateway (Model: IPM-S) Wireless Gateway: Active RFID Gateway Bluetooth to Internet Application: Energy Meter Networks Motor Control Industrial

More information

QUICK SETUP GUIDE. Raritan PXE. Safety Precautions. Before You Begin. Mounting the PDU. Unpacking the PXE. 1U Size

QUICK SETUP GUIDE. Raritan PXE. Safety Precautions. Before You Begin. Mounting the PDU. Unpacking the PXE. 1U Size QUICK SETUP GUIDE Raritan PXE Thank you for purchasing the Raritan PXE intelligent power distribution unit (PDU). The intended use of the PXE is distribution of power to information technology equipment

More information

IT 1910i. Industrial 2D-code hand-held scanner TECHNICAL DESCRIPTION. make technical changes EN /06. We reserve the right to

IT 1910i. Industrial 2D-code hand-held scanner TECHNICAL DESCRIPTION. make technical changes EN /06. We reserve the right to IT 1910i Industrial 2D-code hand-held scanner EN 50123791 2013/06 We reserve the right to make technical changes TECHNICAL DESCRIPTION 2013 Leuze electronic GmbH + Co. KG In der Braike 1 D-73277 Owen /

More information

AM8074 User s Manual

AM8074 User s Manual AM8074 User s Manual Table of Contents Section 1: Introduction...1 Section 2: AM8074 Main Window...2 Section 3: COM Port Settings...4 09/Aug/09 Table of Contents Section 1 Introduction Introduction The

More information

SMiRF v1 Serial Miniature RF Link 8/25/2004

SMiRF v1 Serial Miniature RF Link 8/25/2004 interface and protocol requirements for the SMiRF USB Powered Wireless link. Please report typos, inaccuracies, and especially unclear explanations to us at spark@sparkfun.com. Suggestions for improvements

More information

Network Management Card. User Manual

Network Management Card. User Manual User Manual 1 Contents Contents 2 Chapter 1 Overview 3 1.1 NMC package contents 4 1.2 NMC CD Resources 4 1.3 Features 4 1.4 NMC Applications 5 Chapter 2 NMC parameters setting via serial COM port 6 2.1

More information

JNIOR. A Network I/O Resource Utilizing the JAVA Platform. JNIOR Support Tool Manual. Release 6.0

JNIOR. A Network I/O Resource Utilizing the JAVA Platform. JNIOR Support Tool Manual. Release 6.0 JNIOR A Network I/O Resource Utilizing the JAVA Platform Release 6.0 Supports JNIOR Series 3 and 4 JNIOR OS 3.4 or greater required INTEG Process Group, Inc. 2919 East Hardies Rd, First Floor Gibsonia,

More information

Application Note: Crestron System Integration

Application Note: Crestron System Integration Application Note: Crestron System Integration This application note describes how to integrate a Crestron system with North. Please read the DataSync Driver Manual, and Commander Manual or ObSys Manual

More information

User Guide. Model Temperature Datalogger Kit Model Temperature and Humidity Datalogger Kit Model SW276 Datalogging Software SW276

User Guide. Model Temperature Datalogger Kit Model Temperature and Humidity Datalogger Kit Model SW276 Datalogging Software SW276 User Guide Model 42265 Temperature Datalogger Kit Model 42275 Temperature and Humidity Datalogger Kit Model SW276 Datalogging Software SW276 Introduction Congratulations on your purchase of Extech Instrument

More information

CpE213: Project C Programming Based Application

CpE213: Project C Programming Based Application CpE213: Project 3 8051 C Programming Based Application Goals: For your project 3, you will interface a 4 4 KEYPAD to your microcontroller and build a simple calculator. The Hyperterminal (or similar terminal

More information

Multi-Function Smart Indicator User Manual

Multi-Function Smart Indicator User Manual Multi-Function Smart Indicator User Manual EC30006 Content 1 Notice... 2 2 Specification... 2 3 Main parameter... 3 4 How to fix... 3 5 Port... 4 6 On/Off... 4 7 Charging... 4 8 Display... 5 9 Screen keypad...

More information

(RS232-Interface) The variants with other interfaces look slightly different. Operation

(RS232-Interface) The variants with other interfaces look slightly different. Operation Description Characteristic features Up to 20 temperature measurement points measuring range 55 +125 C Use of temperature probe DALLAS-Sensors type 18B20, 18S20 Three wire, parallel connection of sensors

More information

Manual. Technical Specifications: Version 1.0.0, May Copyright Terabee 2016

Manual. Technical Specifications: Version 1.0.0, May Copyright Terabee 2016 Copyright 2016 Manual Version 1.0.0, May 2016 Technical Specifications: Mounting: Size: Weight: Supply voltage: Supply current: Possible interfaces: Range: Update range: Range resolution: Accuracy: Field

More information

CREATING PANEL APPLICATIONS

CREATING PANEL APPLICATIONS CREATING PANEL APPLICATIONS 3.1. Setting up the Panel Application... 1 3.1.1. General Settings...2 3.1.2. Custom Settings...5 3.1.3. Activating Multiple Overlapped Buttons by One Touch...7 3.1.4. Specifying

More information

XTA s AudioCore PC Control Software on your Mac

XTA s AudioCore PC Control Software on your Mac XTA s AudioCore PC Control Software on your Mac AppleCore..? Tied to the Mac OSX platform and need to control any XTA Electronics DP Series processor, or maybe you just need to update your DP Series or

More information

Application Note Demonstrating the Serial Port Profile (SPP) Between BlueConnect and BTW 2002/5/29

Application Note Demonstrating the Serial Port Profile (SPP) Between BlueConnect and BTW 2002/5/29 Application Note Demonstrating the Serial Port Profile (SPP) Between BlueConnect and BTW 2002/5/29 1 Introduction As a technology leader in the wireless networking market, WIDCOMM s vision is to enable

More information

Rako WRA-232. TCP / RS232 Interface

Rako WRA-232. TCP / RS232 Interface Rako WRA-232 TCP / RS232 Interface Table of Contents Rako WRA-232 1 TCP / RS232 Interface 1 Table of Contents 2 RAKO RS232 Interface Description 2 RS232 Interface configuration 3 TCP / Telnet Interface

More information

MxDS1 CNC Data Shuttle

MxDS1 CNC Data Shuttle MxDS1 CNC Data Shuttle Installation Instructions And Operator Manual 2010 Memex Automation Inc. All rights reserved. No part of this manual may be reproduced without express written consent of Memex Automation

More information

Cutler-Hammer ELC Serial Driver Help Kepware Technologies

Cutler-Hammer ELC Serial Driver Help Kepware Technologies Cutler-Hammer ELC Serial Driver Help 2012 Kepware Technologies 2 Table of Contents Table of Contents 2 3 Overview 3 Device Setup 4 Modem Setup 5 Cable Diagram 5 Data Types Description 7 Address Descriptions

More information

SC168MBM 16x8 Characters MODBUS MASTER LCD

SC168MBM 16x8 Characters MODBUS MASTER LCD Product Description SC168MBM is a programmable LCD that serve as MASTER RTU MODBUS device. It reads and display registers values from MODBUS Slave devices through its RS485 port. The LCD can be configured

More information

VSM Manager. The VSM Manager is a Windows GUI that can be installed to serially control Genesis Matrixes with a firmware of version 2.5 or later.

VSM Manager. The VSM Manager is a Windows GUI that can be installed to serially control Genesis Matrixes with a firmware of version 2.5 or later. VSM Manager Table of Contents Overview...1 Getting Started...1 Toolbar... 2 Serial Connection... 2 Refresh... 3 Help... 3 Tab Pages... 4 General... 4 Control...5 Schedule... 6 Command... 6 Communications...

More information

IPGpulser. IPGpulser Overview

IPGpulser. IPGpulser Overview Overview The package consists of both a hardware interface box and software to provide a number of control features for the IPG laser. The, as its name implies, provides a pulse generator coupled to the

More information

DFS/Cutter. Debugging Communication Problems

DFS/Cutter. Debugging Communication Problems DFS/Cutter Technical Support Bulletin Debugging Communication Problems Abstract: This TSB is written to help users debug communication problems where the cutter appears to ignore everything the computer

More information

Communication Protocol Specification For SCIP2.0 Standard

Communication Protocol Specification For SCIP2.0 Standard DATE: 10/Oct./2006 Standard All Page Modified 2008/03/21 Kawata PR5446 X 8 Web Link, LED blinking after changed to, MDMS-Command explanation, Bit rate as a standard. 2,4,6,9 2007/08/03 Kawata PR5325 X

More information

DIGITAL TRANSDUCER TESTER & PC-INTERFACE (AVA-03) 16-APR-2015 PAGE 1 OF 9 1. GENERAL

DIGITAL TRANSDUCER TESTER & PC-INTERFACE (AVA-03) 16-APR-2015 PAGE 1 OF 9 1. GENERAL PAGE 1 OF 9 1. GENERAL The Avanti I²C Transducer Tester and PC-Interface (AVA-03) is a standalone device for accessing pressure/temperature transducers, which are equipped with a two-wire serial I²C interface.

More information

EPS 06 in rear housing type A1

EPS 06 in rear housing type A1 Field Installation and / or Replacement of RACO Electronic Position Sensor Board EPS 02 & EPS 06 - Electronic Limit Switches - Analog Output Position Signal - Very Accurate - Easy To Use - Robust - Dependable

More information

Operate the Hydrolab SDI-12 / Modbus / RS232 TTY Communications Module (HL Series Sonde)

Operate the Hydrolab SDI-12 / Modbus / RS232 TTY Communications Module (HL Series Sonde) Operate the Hydrolab SDI-12 / Modbus / RS232 TTY Communications Module (HL Series Sonde) 04/2018, Edition 1 User Manual Overall Contents Part A Operate the Hydrolab SDI-12 Communications Module Part B

More information

Remote Display User Manual

Remote Display User Manual Remote Display User Manual 1 Contents: Introduction - Features... 3 Hardware Overview... 4 Quick-Start Guide... 5 Android Application Operation... 6 Launching and Connecting... 6 Main Display... 7 Configuring

More information

Tandem-Systems, Ltd. Rhino Terminal. User s Manual

Tandem-Systems, Ltd. Rhino Terminal. User s Manual Tandem-Systems, Ltd. Rhino Terminal User s Manual Tandem Systems, Ltd., 2007-2009 Table of Contents Overview... 4 Features... 5 Getting Started... 6 The Main Window... 6 Establishing a Connection... 6

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

SIXNET EtherTRAK Driver PTC Inc. All Rights Reserved.

SIXNET EtherTRAK Driver PTC Inc. All Rights Reserved. 2018 PTC Inc. All Rights Reserved. 2 Table of Contents 1 Table of Contents 2 3 Overview 3 Setup 4 Channel Properties General 4 Channel Properties Ethernet Communications 5 Channel Properties Write Optimizations

More information

Hello Angles... A First Use Guide to the VS Product Series: RS232 Interface with LD Standard Communication Protocol & Analogue 4-20mA Output Signals.

Hello Angles... A First Use Guide to the VS Product Series: RS232 Interface with LD Standard Communication Protocol & Analogue 4-20mA Output Signals. Hello Angles... A First Use Guide to the VS Product Series: RS232 Interface with LD Standard Communication Protocol & Analogue 4-20mA Output Signals. 1 Who Is This Guide For? The purpose of this guide

More information

QUICK START. DevCom2000 User Manual

QUICK START. DevCom2000 User Manual QUICK START DevCom2000 uses Device Descriptions (DDs) to access data stored in the memory of the smart field device. These DDs are developed by the manufacturer for their products and, in turn, distributed

More information

Copley Indexer 2 Program User Guide

Copley Indexer 2 Program User Guide Copley Indexer 2 Program User Guide P/N 95-00744-000 Revision 2 June 2008 Copley Indexer 2 Program User Guide TABLE OF CONTENTS About This Manual... 6 1: Introduction... 9 1.1: Copley Controls Indexer

More information

Mitsubishi FX Net Driver PTC Inc. All Rights Reserved.

Mitsubishi FX Net Driver PTC Inc. All Rights Reserved. 2017 PTC Inc. All Rights Reserved. 2 Table of Contents 1 Table of Contents 2 3 Overview 3 Device Setup 4 Channel Properties 5 Channel Properties - General 5 Channel Properties - Serial Communications 6

More information

VEX Robot Remote Control Set-Up

VEX Robot Remote Control Set-Up VEX Robot Remote Control Set-Up Note: Before proceeding with the VEXnet joystick setup on the following pages, complete these steps: 1) Open the RobotC program 2) Select File > Open Sample Program 3) Select

More information

Thank you for choosing Loadstar Sensors. Need additional help? Call us at or us at

Thank you for choosing Loadstar Sensors. Need additional help? Call us at or  us at LoadVUE User Guide LoadVUE LoadVUE Lite Thank you for choosing Loadstar Sensors. Need additional help? Call us at 510-623-9600 or email us at support@loadstarsensors.com LoadVUE is compatible with Windows

More information

Lufkin Modbus Serial Driver Help Kepware Technologies

Lufkin Modbus Serial Driver Help Kepware Technologies Lufkin Modbus Serial Driver Help 2012 Kepware Technologies 2 Table of Contents Table of Contents 2 3 Overview 3 Channel Setup 4 Device Setup 5 Cable Diagram 5 Modem Setup 6 Block Sizes 6 Framing 7 Error

More information

Mitsubishi FX3 Driver Configuration Manual

Mitsubishi FX3 Driver Configuration Manual Driver Configuration Manual Version 7.0 rev 0a Advantech Corp., Ltd. page 1 Table of Contents Driver Configuration Manual 1 1. Configuration 2 1.1... 2 1.2 Module Settings... 2 2. WebAccess Configuration

More information

Leuze electronic. Dimensioned drawing. Electrical connection. Accessories

Leuze electronic. Dimensioned drawing. Electrical connection. Accessories 2D-code hand-held scanner Dimensioned drawing 4-14 V DC We reserve the right to make changes BP_IT4600_4800_GB.fm Part No. 501 06667! Hand-held scanner for Data-Matrix Codes and Bar Codes! Large reading

More information

Specification. Current Consumption Range 8m * Rotational Angle +/- 50 degrees * Shear Angle +/- 40 degrees *

Specification. Current Consumption Range 8m * Rotational Angle +/- 50 degrees * Shear Angle +/- 40 degrees * HX11TR Ultrasonic Positioning Device The HX11TR can be set up to operate as a ultrasonic signal receiver, ultrasonic transmitter, ultrasonic caller and ultrasonic transponder. It is small size and economical.

More information

Configuring Terminal Settings and Sessions

Configuring Terminal Settings and Sessions This chapter contains the following sections: Information About Terminal Settings and Sessions, page 1 Configuring the Console Port, page 3 Configuring the COM1 Port, page 5 Configuring Virtual Terminals,

More information

RA Triage Procedure. Product: DM8050 & DM8600 series. 1.0 Useful Components & Accessories

RA Triage Procedure. Product: DM8050 & DM8600 series. 1.0 Useful Components & Accessories RA Triage Procedure Product: DM8050 & DM8600 series 1.0 Useful Components & Accessories 1.1 Cognex Single Port AC PoE Injector (Fig. 1) 1.2 USB cable (Fig. 2) 1.3 RS232 cable (Fig. 3) 1.4 WiFi or Bluetooth

More information

Communicator ISDN 128 External

Communicator ISDN 128 External Communicator ISDN 128 External User s Manual Version 1.0 Copyright Statement No part of this manual may be reproduced or transmitted, in any form or by any means, electronic or mechanical, including photocopying,

More information

Ping Driver PTC Inc. All Rights Reserved.

Ping Driver PTC Inc. All Rights Reserved. 2017 PTC Inc. All Rights Reserved. 2 Table of Contents 1 Table of Contents 2 3 Overview 4 Channel Properties General 4 Channel Properties Ethernet Communications 5 Channel Properties Write Optimizations

More information

Network Management Card. User Manual

Network Management Card. User Manual User Manual 1 Contents Contents 2 Chapter 1 Overview 3 1.1 NMC package contents 4 1.2 NMC CD Resources 4 1.3 Features 4 1.4 NMC Applications 5 Chapter 2 NMC parameters setting via serial COM port 6 2.1

More information

Thermo Scientific VisionMate Wireless Barcode Reader User Manual

Thermo Scientific VisionMate Wireless Barcode Reader User Manual Thermo Scientific VisionMate Wireless Barcode Reader User Manual Version 01 User Manual September 2016 This page intentionally left blank Contents Overview 1-1 Package contents 2-1 Installation requirements

More information

REPLACING A PEERLINK NETWORK WITH 2572-A / 2572-B ETHERNET

REPLACING A PEERLINK NETWORK WITH 2572-A / 2572-B ETHERNET REPLACING A PEERLINK NETWORK WITH 2572-A / 2572-B ETHERNET This is an example of how 2572-A / 2572-B Ethernet Modules may be used share data among multiple PLC s using the IP Multicast feature. The purpose

More information

Wiring Section 3-3. NQ-Series communication ports support various types of (serial) communication.

Wiring Section 3-3. NQ-Series communication ports support various types of (serial) communication. 3-3 Wiring NQ-Series models have, besides one power connector, a number of communication ports. Please refer to Table 2.2: Common specifications for NQ-Series and Table 2.3: Specifications per NQ-Series

More information

SF10 SF10. Features: The SF10 laser altimeter is ideal for automated landings and precision hovering.

SF10 SF10. Features: The SF10 laser altimeter is ideal for automated landings and precision hovering. The is a compact, lightweight laser altimeter for above-groundlevel altitude measurement from small fixed wing or multi-rotor craft. The laser altimeter is ideal for automated landings and precision hovering.

More information

Polling Data Registers from Siemens PLC Series S7-300, S7-400 & S7-1200

Polling Data Registers from Siemens PLC Series S7-300, S7-400 & S7-1200 Application User guide AUG 048 / Rev. 1.0 Polling Data Registers from Siemens PLC Series S7-300, S7-400 & S7-1200 This short guide explains how to poll data registers from a Siemens Device. support.ewon.biz

More information

ASCII Text Control (ATC) Protocol for Remote Control of Equinox Programmers

ASCII Text Control (ATC) Protocol for Remote Control of Equinox Programmers Report No: AN110 Title: ASCII Text Control (ATC) Protocol for Remote Control of Equinox Programmers Author: Date: Version Number: John Marriott 27 th March 2009 1.06 Abstract: This application note describes

More information

PROGRAMMING AND INSTALLATION MANUAL

PROGRAMMING AND INSTALLATION MANUAL PROGRAMMING AND INSTALLATION MANUAL Keypad LCD-S (software version 3.10) CA-10 plus GDAŃSK ca10plci_s_e 09/03 WARNING Due to safety reasons, alarm system should be installed by qualified personnel only.

More information

Satmaster QuickAim User Guide Mk4.x

Satmaster QuickAim User Guide Mk4.x Satmaster QuickAim User Guide Mk4.x Satmaster QiuickAim is a simple program designed to run on Win9x/NT/2000/XP or Vista. This is a quick start guide in using the software (see help file for more detail).

More information