ANPR ACCESS ANPR ACCESS HD

Size: px
Start display at page:

Download "ANPR ACCESS ANPR ACCESS HD"

Transcription

1 ANPR ACCESS ANPR ACCESS HD ethernet programmers guide v4.2

2 Content CONTENT 1 INTRODUCTION 3 2 COMMUNICATION PROTOCOL MESSAGE FORMAT 4 TCPClient TCPServer transmission 5 TCPServer TCPClient reception AVAILABLE SERVER FUNCTIONS GET DEVICE INFO NO OPERATION REBOOT START TRIGGER STOP TRIGGER ENABLE ENGINE DISABLE ENGINE GET DIGITAL I/O SET DIGITAL OUTPUT GET DATE / TIME SET DATE / TIME GET ERROR COUNTERS RESET ERROR COUNTERS GRAB LIVE IMAGE RELOAD CHECK LIST GET CHECK LIST 16 A TCP TAG IDENTIFIER OVERVIEW 18 B ERROR CODES 19 C DISCLAIMER 21 D DOCUMENT REVISION 22 2/22

3 Introduction 1 INTRODUCTION The NEDAP ANPR License Plate Reader offers automatic number plate reading. The NEDAP ANPR is an all in one camera including camera, analyzer and IR illuminator. The ANPR has embedded processing software onboard. The License Plate Reader is default featured with an RS485 and Ethernet communication. Wiegand is possible using the separate available Wiegand Interface Module 3/22

4 2 COMMUNICATION PROTOCOL Communication is based upon the TCP protocol. All requests sent from the TCPClient are always supposed to receive an acknowledge message from the TCPServer inside the ANPR. If the connection is unused (no data sent from client to server) for more than 60 seconds then the TCPServer automatically shuts the connection. To maintain an open connection is enough to send periodically a NOP command within the connection timeout. The TCPServer communication port is MESSAGE FORMAT TCP message format Always set to 24 (=0x ). <CMD> 4 Command code. 0xFFFFFFFF 4 Received. <ERR> 4 Error code ( 0=no error). <LEN> 4 Data length in bytes. 32-bit aligned. Header not included. <DATA> <LEN> Message data. The message data contains the tags-fields. Every tag is defined by a tag-identifier and a tag-length indicator. The packet may contain any number of tag-fields. Tagfields are arranged depending on the ANPR firmware. This may as well change when using a different firmware version. For this reason, when searching for tag-fields in a received packet, the server should scan all tag-fields regardless of their position inside the received message. This programming method allows for software compatibility with future firmware versions. Data message field format <TAG-ID> 4 Tag-identifier. <TAG-LEN> 4 Tag-length in bytes. <TAG-DATA> <TAG-LEN> Tag field contents. Data conventions The tag-data field contents are based on the following conventions: All data fields are always aligned 4 bytes. Value data fields are 4 bytes encoded in little endian. E.g. 10 -> 0x0A (len=4) String data fields should contain a terminating zero. The LEN field should include the terminating zero but not the padding bytes. E.g. 'ABCDE' -> 0x (len=6) Buffer data fields may contain generic data. The LEN field should not include the padding bytes. 4/22

5 TCPClient TCPServer transmission During the transmission ensure that the following is performed: 1 Add the message header to the message. In case there is no data to send, the message is made up by the message header only. The data length field should also be set to zero. 2 Enter the command code field. Refer to command descriptions in chapter Send the message. TCPServer TCPClient reception During reception ensure that the following is performed: 1 Wait for the first message packet and extract the message header. 2 Wait, if necessary, for next packets until the complete message is received. Waiting time for each packet is application set. 3 Create a data buffer containing the complete received message. Check whether the error field contains any error. If this is the case, the message data is contains are not valid. 2.2 AVAILABLE SERVER FUNCTIONS GET DEVICE INFO Request device information about the ANPR. Get device info Command code Command code <STRLEN> 4 Data length in bytes ID <BSN> 4 Board serial number ID <BC> 4 Board code ID 5/22

6 <HWVN> 4 Hardware version ID <TEMP> 4 Board temperature (in tenths of C) ID <FPVN> 4 FPGA version ID <STRLEN> 4 SIZ <FWVN> <STRLEN> * Firmware version string including description ID 1 4 Number of video channels always 1 (only if context camera installed 2) *STRING fields should include a terminating zero. Append padding bytes to ensure 4 byte alignment. Padding bytes are not counted in the string length NO OPERATION The TCPClient may use this message to prevent the TCP connection from being automatically shut by the TCPServer following 60 seconds of communication inactivity (no data sent). This is the only message for which no response is expected from the TCPServer. No operation Command code. Example no-operation , 3E , FF FF FF FF, FF FF FF FF, , REBOOT When sending this command, the ANPR will perform a reboot. Before the restart, an acknowledge message is sent. No operation Command code. 6/22

7 Command code START TRIGGER This command should be used when the ANPR is set to TRIGGER_ETHERNET mode. If this command is sent while the ANPR is operating a different mode, the reply will be an error message. The command message must include a trigger-string. This string requires no specific formatting and is used as a trigger identifier. For example, it may contain the current date and time of the client. Upon receiving this command, the ANPR starts grabbing and processing plates for the specified gate-time period. When the gate-time expires, a transit event is generated. In case a stop-trigger message is received before the gate-time expires, the gate-time is ignored. Start trigger Command code. 20+<STRLEN 4 Data length in bytes. > ID <GATE-TIME> 4 Gate-time in milliseconds ID <STRLEN> 4 SIZ <TRIG-STR> <STRLEN> * Trigger-string (max. 32 characters). STRING fields should include a terminating zero. Append padding bytes to ensure 4 byte alignment. Padding bytes are not counted in the string length. 7/22

8 Command code. Example start-trigger (gate-time 1000ms, trigger-string 'ABC123') , C , FF FF FF FF, FF FF FF FF, , 1C , , , E , , , , STOP TRIGGER This command should only be used when the ANPR is set to TRIGGER_ETHERNET mode. If this command is sent while the ANPR is operating a different mode, the reply will be an error message. Sending this message causes the images grabbing and processing to halt and the consequent generation of a transit event. The message must contain the same trigger-string as the previous start-trigger command. Stop trigger Command code. 8+<STRLEN> 4 Data length in bytes ID <STRLEN> 4 SIZ <TRIG-STR> <STRLEN> * Trigger-string (max. 32 characters). STRING fields should include a terminating zero. Append padding bytes to ensure 4 byte alignment. Padding bytes are not counted in the string length Command code. 8/22

9 2.2.6 ENABLE ENGINE This command enables plate number reading. It corresponds to the EnableEngine command in the General Settings page on the web server. If the plate reader engine was already enabled, this command will perform no action, while the reply message from the TCPServer will not show any error. Enable engine Command code Command code DISABLE ENGINE This command disables plate number reading. It corresponds to the EnableEngine command in the General Settings page on the web server. If the plate reader engine was already disabled, this command will perform no action, while the reply message from the TCPServer will not show any error. Disable plate reading Command code Command code. 9/22

10 2.2.8 GET DIGITAL I/O This command allows reading the state of the digital inputs and outputs. Get digital I/O Command code Command code Data length in bytes ID <NR-I> 4 Number of digital inputs ID <I-STAT> 4 Digital input status ID <NR-O> 4 Number of digital outputs ID <O-STAT> 4 Digital output status The state of the digital inputs and outputs is a 32-bit long variable. The least significant bit corresponds to input or output number 0. If the bit has value 1, the input or output is active SET DIGITAL OUTPUT This command allows setting a digital output on or off. Set digital output / Command code: 25051=Output ON, 25052=Output OFF. 10/22

11 12 4 Data length in bytes ID <DON> 4 Selected digital output number / 4 Command code GET DATE / TIME This command allows reading the ANPR current date and time with additional information about time zone and daylight saving time. Get date/time Command code Command code Data length in bytes ID <DAY> 1 Day <MON> 1 Month <YEAR> 2 Year <HOUR> 2 Hour <MIN> 2 Minutes 11/22

12 <SEC> 2 Seconds <MSEC> 2 Milliseconds ID <TIMEZONE> 4 GMT offset in minutes ID <DST> 4 0=Standard time, 1=Daylight saving time The received time is Greenwich Mean Time (GMT). Add to the received time the GMT offset to obtain the local time. If the daylight saving time value is 1, it is necessary to add 60 minutes SET DATE / TIME This command allows settings the date and time. It also enables/disables the automatic switch to daylight save time. The ANPR is featured with a real time clock with backup battery: this ensures that the date and time is even updated while the device is off. Set date/time Command code Data length in bytes ID <DAY> 1 Day <MON> 1 Month <YEAR> 2 Year <HOUR> 2 Hour <MIN> 2 Minutes <SEC> 2 Seconds <MSEC> 2 Milliseconds ID <TIMEZONE> 4 GMT offset in minutes ID <DST> 4 1=Enable automatic switch to daylight saving time / standard time. 12/22

13 Command code GET ERROR COUNTERS While operating the ANPR keeps track of errors detected as of startup. This allows keeping under control any anomalies, such as problems with the FTP server. Get error counters Command code Command code Data length in bytes ID <ERRCNT> 4 Number of errors in image transfer to FTP server ID <ERRCNT> 4 Number of errors in image transfer to data base ID <ERRCNT> 4 Number of errors in alarm sending to PNS ID <ERRCNT> 4 Number of errors in log sending to FTP server ID 13/22

14 <ERRCNT> 4 Number of errors in image grabbing ID <ERRCNT> 4 Number of errors in synchronization with time server RESET ERROR COUNTERS This command will reset the error counters. Reset error counters Command code : Command code GRAB LIVE IMAGE This command allows grabbing a live JPEG image. The images may be bright or dark due to adjustments in the electronic auto-shutter system. The specified image size must be smaller than or equal to the ANPR camera resolution. Grab live image Command code. 0 4 Receiver: 0=IMAGE_BW 28 4 Data length in bytes ID <QVAL> 4 JPEG quality in range from 1 to ID 8 4 SIZ 14/22

15 <WIDTH> 4 Image width in pixels. <HEIGHT> 4 Image Height in pixels Command code. 0 4 Sender Data length in bytes. <IMGSIZ> ID 12 4 SIZ <DAY> 1 Day <MON> 1 Month <YEAR> 2 Year <HOUR> 2 Hour <MIN> 2 Minutes <SEC> 2 Seconds <MSEC> 2 Milliseconds ID SIZ <IMGSIZ> 0 4 Unused. 0 4 Unused Image header size in bytes. <IMGSIZ> 4 Image size in bytes. <WIDTH> 4 Image width in pixels. <HEIGHT> 4 Image height in pixels. 0 4 Unused. 0 4 Unused. 0 4 Unused. 0 4 Unused. <IMG> <IMGSIZ> * JPEG image data. Padding bytes are appended to ensure 4 byte alignment. Padding bytes are not counted in the image size RELOAD CHECK LIST This command reloads the check list file into RAM memory. List management must be enabled on the web interface in order for this operation to be carried out. If list management is not enabled, the reply is an error message. 15/22

16 Reload plate list / Command code: 35000=Reload check list A, 35001=Reload check list B / 4 Command code GET CHECK LIST This command allows reading the ANPR check list. Get plate list / Command code: 35002=Get check list A, 35003=Get check list B / 4 Command code Data length in bytes. <LISTSIZ> ID <PLATES> 4 Number of plates in the list 16/22

17 ID <LISTSIZ> 4 SIZ <LIST> <LISTSIZ> String containing license plates The string with the plate check list is formatted as follows: Vehicle Number plate; Country; Comment string Example 46HVR9;NLD;Ferrari 599 GTO ZLSZ17;NLD;Fiat Cinquecento AB123HK;ITA; 17/22

18 TCP TAG IDENTIFIER OVERVIEW A TCP TAG IDENTIFIER OVERVIEW Command identifiers ID Description Set digital output on Set digital output off Get digital I/O No operation Get live image Reboot Set date / time Get date / time Reload check list A Reload check list B Get check list A Get check list B Enable engine Disable engine Get error counters Reset error counters Start trigger Stop trigger Get device info Data Identifiers ID Description 2000 JPEG image 2001 Image time JPEG quality GMT offset in minutes Daylight saving time Image size (width and height in pixels) Board serial number Firmware version string / description Board code Hardware version Board temperature (in tenths of C) FPGA version Date / time Number of video channels Number of digital inputs Number of digital outputs Digital input status Digital output status Selected digital output number Error count image transfer to FTP server Error count image transfer to data base Error count alarm sending to PNS Error count log sending to FTP server Error count image grabbing Error count time server synchronization Trigger-string Gate-time in milliseconds Number of plates in the list String containing license plates Enable automatic switch to daylight saving time / standard time 18/22

19 Error codes B ERROR CODES These error codes are only applicable for firmware revision 11.8 and newer. ID Name Description 0 OK No error. Operation successful ML_ERR_INVALID_COMMAND_CODE Command code is not valid ML_ERR_NETWORK Network error ML_ERR_INSUFFICIENT_MEMORY Memory is insufficient to complete the operation ML_ERR_FILL_BUFFER Error while preparing the reply buffer ML_ERR_MISSING_PARAMETER A parameter is missing in the VRC message ML_ERR_FILE_DELETE Error while deleting a file ML_ERR_FILE_READ Error while reading a file ML_ERR_FILE_WRITE Error while writing a file ML_ERR_PARTITION_FORMAT Error while formatting a partition ML_ERR_ALREADY_DONE The command was already executed ML_ERR_DEVICE_BUSY Device or resource busy ML_ERR_WRONG_PARAMETER A wrong parameter was passed in the VRC message ML_ERR_SYS_EXECUTE A task couldn't be executed ML_ERR_GET_IMAGE_FAILED Image grab failed ML_ERR_IMAGE_SIZE Error while resizing the image ML_ERR_IMAGE_FORMAT Error while changing image format ML_ERR_JPEG_ENCODE Error while encoding the image in JPEG format ML_ERR_NOT_ALLOWED The requested operation is not allowed ML_ERR_TOO_SOON The request was issued too soon without respecting a minimum time interval from the previous request ML_ERR_INVALID_DATA_RECEIVED Format of received data is invalid. Returned when reading or writing parameters from INI files ML_ERR_INTERNAL_ERROR Internal error ML_ERR_INVALID_STRING_KEY_VALUE The value is not valid (for keys of type STRING) ML_ERR_INVALID_LONG_KEY_VALUE The value is outside the allowed range (for keys of type LONG) ML_ERR_INI_FILE_WRITE Error while writing a INI file ML_ERR_INI_FILE_READ Error while reading a INI file ML_ERR_WRONG_PACKET_SIZE Input data size is not valid ML_ERR_SIGNATURE_INVALID Error while initializing a image signature instance ML_ERR_SIGNATURE_MISSING_FIELDS Some fields required to compute the signature are missing ML_ERR_INI_WRONG_DATA Some fields in the INI file have invalid values ML_ERR_INI_NEED_REBOOT Update of files was successful and now the device must be rebooted for the changes to take effect ML_ERR_TRIGGER_MSG_QUEUE_IS_FULL The message queue is full ML_ERR_TRIGGER_MSG_QUEUE_SEND_FAILED A internal communication error occurred ML_ERR_FTP_STORE Error while storing data on FTP server 19/22

20 Error codes ML_ERR_ENGINE_IS_STOP Engine is stopped and therefore it can't process the trigger ML_ERR_ENGINE_IS_NOT_CONFIGURED Engine is not configured ML_ERR_TRIGGER_INVALID Trigger is not valid ML_ERR_WRONG_TRIGGER_MODE Wrong trigger mode ML_ERR_FTP_STORE_DISABLED Storing to FTP server is disabled ML_ERR_IMAGE_OCR_NOT_AVAILABLE OCR image was not available ML_ERR_IMAGE_COL_NOT_AVAILABLE Color image was not available ML_ERR_IMAGE_HQ_NOT_AVAILABLE HQ image was not available ML_ERR_NO_NEW_IMAGES No new image is available ML_ERR_NO_NEW_TRANSIT No new transit is available 20/22

21 Disclaimer C DISCLAIMER This information is furnished for guidance, and with no guarantee as to its accuracy or completeness; its publication conveys no license under any patent or other right, nor does the publisher assume liability for any consequence of its use; specifications and availability of goods mentioned in it are subject to change without notice; it is not to be reproduced in any way, in whole or in part, without the written consent of the publisher. 21/22

22 Document revision D DOCUMENT REVISION Version Date Comment Added error code list Added ANPR ACCESS HD Layout adjusted to new corporate style 22/22

ANPR Quick Guide via Web

ANPR Quick Guide via Web ANPR Quick Guide via Web Contents 1 Introduction... 2 2 Web Configuration... 2 2.1 Detection Configuration... 2 2.2 Uploaded Picture Configuration... 7 2.3 (Optional) Overlay Content Configuration... 9

More information

ANPR Quick Guide via Web

ANPR Quick Guide via Web ANPR Quick Guide via Web Contents 1 Introduction... 2 2 Web Configuration... 2 2.1 Detection Configuration... 2 2.2 Uploaded Picture Configuration... 7 2.3 (Optional) Overlay Content Configuration... 9

More information

Projector IN5542/IN5542c/IN5544/IN5544c User's Manual Network Guide

Projector IN5542/IN5542c/IN5544/IN5544c User's Manual Network Guide Projector IN5542/IN5542c/IN5544/IN5544c User's Manual Network Guide Thank you for purchasing this projector. This projector has a network function that brings you the following features. ü Web control

More information

Manual. ArtistaMEDIA. Network Media Player PA-09-XXX. Version

Manual. ArtistaMEDIA. Network Media Player PA-09-XXX. Version ArtistaMEDIA Network Media Player PA-09-XXX Version 1.12 The information contained in this document has been carefully researched and is, to the best of our knowledge, accurate. However, we assume no liability

More information

1. PRODUCT FEATURES INSTALLATION...

1. PRODUCT FEATURES INSTALLATION... 0 Contents 1. PRODUCT FEATURES... 2 2. INSTALLATION... 3 2.1 INSTALL CAMERA... 3 2.2 ASSIGN IP ADDRESS... 4 2.3 ACCESS FROM A BROWSER... 4 2.4 ACCESSING THE CAMERA FROM THE INTERNET... 5 2.5 ADJUSTING

More information

AEOS. AEOS Pelco Integration. Installation manual

AEOS. AEOS Pelco Integration. Installation manual AEOS AEOS Pelco Integration Integration of Pelco Camera s & Endura Storage Server Installation manual 28 March 2012 Version: 2 This information is furnished for guidance, and with no guarantee as to its

More information

RS-1260 Digital Signage Player

RS-1260 Digital Signage Player RS-1260 Digital Signage Player User Manual V1.3 Legal Notice and Disclaimer Thank you for choosing RapidSignage products. This user manual provides a description of the Player relevant guidelines for key

More information

Impact VPM Lite Reference Guide. Publication # (Rev )

Impact VPM Lite Reference Guide. Publication # (Rev ) Impact VPM Lite Reference Guide Publication # 821003540 (Rev 11.6.0) Disclaimer Datalogic Automation, Inc. makes no representations or warranties for merchantability or fitness for any particular purpose,

More information

Fix serial communications not functioning after reboot when the station number is set to iptables Fix iptables.

Fix serial communications not functioning after reboot when the station number is set to iptables Fix iptables. Sixnet IPm Firmware Revision History Note: IPm firmware versions are of the form major.minor.buildnumber. A letter X will be appended in the case of unreleased experimental versions. Other letters may

More information

CM868LRxx & CMUS915LRxx Magnetic contact Programming manual

CM868LRxx & CMUS915LRxx Magnetic contact Programming manual CM868LRxx & CMUS915LRxx Magnetic contact Programming manual Revision 1.5 June 2016 Page 1 of 23 www.ascoel.it 0.1 Table of Contents 0.1 Table of Contents... 2 1 Document history... 3 2 Introduction...

More information

PCI-HPDI32A-COS User Manual

PCI-HPDI32A-COS User Manual PCI-HPDI32A-COS User Manual Preliminary 8302A Whitesburg Drive Huntsville, AL 35802 Phone: (256) 880-8787 Fax: (256) 880-8788 URL: www.generalstandards.com E-mail: support@generalstandards.com User Manual

More information

FANCOIL CONTROLLER UNIT TC17B01KNX. Product Handbook

FANCOIL CONTROLLER UNIT TC17B01KNX. Product Handbook FANCOIL CONTROLLER UNIT TC17B01KNX Product Handbook Product: TC17B01KNX Description: FANCOIL CONTROLLER UNIT Document Version: 1.2 Date: 09/09/2016 1/37 INDEX 1. General Introduction... 4 2. Product and

More information

ICP DAS WISE User Manual for WISE-71xx Series. [Version 1.27]

ICP DAS WISE User Manual for WISE-71xx Series. [Version 1.27] ICP DAS WISE User Manual for WISE-71xx Series [Version 1.27] Warning ICP DAS Inc., LTD. assumes no liability for damages consequent to the use of this product. ICP DAS Inc., LTD. reserves the right to

More information

power port make sure the ac adapter is plugged into the correct port Make sure to include at the beginning.

power port make sure the ac adapter is plugged into the correct port Make sure to include  at the beginning. Quickstart Guide If you have a blank SD card, you may insert it into the camera. To set up your camera for use on the network, connect the camera's wired network port to a router. Connect the AC adapter

More information

Resource Manager Configuration Tool

Resource Manager Configuration Tool APPENDIXB This appendix provides information on the requirements, setup and use of the Resource Manager Configuration Tool. The topics in this section include: Overview of the, page B-1 Installing the,

More information

Vega Basic Family. Automatic Number Plate Reader

Vega Basic Family. Automatic Number Plate Reader Vega Basic Family Automatic Number Plate Reader Mainly targeted to stop & go tolling, parking and access control systems, with a maximum input power of 13W, the Vega Basic line features a Power-over- Ethernet

More information

[MS-WINSRA]: Windows Internet Naming Service (WINS) Replication and Autodiscovery Protocol

[MS-WINSRA]: Windows Internet Naming Service (WINS) Replication and Autodiscovery Protocol [MS-WINSRA]: Windows Internet Naming Service (WINS) Replication and Autodiscovery Protocol Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes

More information

Impact VPM Lite Reference Guide. Publication # (Rev )

Impact VPM Lite Reference Guide. Publication # (Rev ) Impact VPM Lite Reference Guide Publication # 821003540 (Rev 11.8.1) Disclaimer Datalogic Automation, Inc. makes no representations or warranties for merchantability or fitness for any particular purpose,

More information

Operating Instructions (Additional Features)

Operating Instructions (Additional Features) Network Camera Model No. BB-HCM381 Additional Feature table The following features are added to the camera. Read both Operating Instructions manuals before starting to use the product. Additional Features

More information

FNL Modbus TCP Interface

FNL Modbus TCP Interface FNL Modbus TCP Interface Users Manual V0.1 17.06.2009 Project No.: 5304 Doc-ID.: FNL Modbus TCP Interface-UM-V0.1 Status: Released COMSOFT d:\windoc\icp\doku\hw\fnl\modbus tcp\version_0.1\fnl_modbus_tcp_e.doc

More information

C CURE 9000 Version 2.20 Patch 4 R2

C CURE 9000 Version 2.20 Patch 4 R2 C CURE 9000 Version 2.20 Patch 4 R2 C CURE 9000 Version 2.20 Patch 4 R2 Release Notes September 2014 This Release Notes file provides important information for installing C CURE 9000 Version 2.20 Patch

More information

1.1 Errors and Event list

1.1 Errors and Event list 1.1 Errors and Event list 1.1.1 State machine errors Error code Display description Full description 0x0100 EVENT OVERFLOW Too many events were entered into state machine configuration 0x0101 STATE OVERFLOW

More information

Projector CP-DW10N User's Manual (detailed) Network Guide

Projector CP-DW10N User's Manual (detailed) Network Guide Projector CP-DW10N User's Manual (detailed) Network Guide Thank you for purchasing this projector. This projector has the network function that brings you the following main features. ü Web control The

More information

UM2330 User manual. ST8500 boot. Introduction

UM2330 User manual. ST8500 boot. Introduction UM30 User manual ST8500 boot Introduction This user manual describes ST8500 bootloader functionalities and operations to be done for a correct device boot and the firmware images download. The following

More information

CAMERAS IP START SERIES

CAMERAS IP START SERIES CAMERAS IP START SERIES Contents 1. Login Interface... 3 2. Preview... 4 2.1 Open/Close Preview... 5 2.2 Full-screen Preview... 5 2.3 Electronic Zoom-in... 5 2.3 PTZ Control... 6 3. File Management...

More information

ELSAG North America Law Enforcement Systems, LLC

ELSAG North America Law Enforcement Systems, LLC MPH 900 Datasheet Rev 4.0 Date: 28.01.2008 Figure 1: MPH 900S Mobile Plate IP Smart Cameras MPH 900 Mobile Plate Reader IP Smart Camera LPR Camera sensor Black/White progressive scan CCD Color Overview

More information

Maxiflex Single Harwell NIM M1588 User Manual

Maxiflex Single Harwell NIM M1588 User Manual Maxiflex Single Harwell NIM M1588 User Manual SCOPE This document describes the installation, configuration and use of the Maxiflex M1588 Single Harwell NIM. This version of the manual refers to the NIM

More information

GRANDSTREAM NETWORKS SUMMARY OF UPDATES. The main purpose of this release is bug fixes and feature enhancement.

GRANDSTREAM NETWORKS SUMMARY OF UPDATES. The main purpose of this release is bug fixes and feature enhancement. GRANDSTREAM NETWORKS Firmware Release Notes: Version 1.0.2.21 (HW Supported: 1.2A, 1.3A, 1.3B, 1.5A, 1.6A) Date: August 31, 2017 The main purpose of this release is bug fixes and feature enhancement. CHANGES

More information

DAQ Electronics, Inc 262B Old New Brunswick Road, Piscataway, NJ

DAQ Electronics, Inc 262B Old New Brunswick Road, Piscataway, NJ DAQ Electronics, Inc 262B Old New Brunswick Road, Piscataway, NJ 08854-3756 DNP3 Server Configuration CallistoView version 5.0A This is a description of the unique DNP configuration dialogs and files in

More information

Canlan INSTALLATION MANUAL

Canlan INSTALLATION MANUAL Canlan INSTALLATION MANUAL August 2014 Table of Contents Introduction... 4 Overview... 5 RJ45 Connector and Status LEDs... 5 Power Input... 6 RS232 / RS485 Connectors... 7 Installing the Canlan Software...

More information

PLENA matrix API Table of contents en 3

PLENA matrix API Table of contents en 3 PLENA matrix API en PLENA matrix API Table of contents en 3 Table of contents 1 PLENA Matrix Network API 4 1.1 Protocol Information 4 1.2 Network Discovery 5 1.3 Connection Initiation 5 1.4 Parameter

More information

UCON-IP-NEO Operation Web Interface

UCON-IP-NEO Operation Web Interface UCON-IP-NEO Operation Web Interface copyright G&D 25/01/2012 Web Interface version 2.30 Subject to possible errors and technical modifications License notes G&D license Copyright G&D GmbH 2003-2012: All

More information

PoE Digital Clock. * Installation and Operation Manual * * For Clocks with Serial Numbers beginning with 'B' *

PoE Digital Clock. * Installation and Operation Manual * * For Clocks with Serial Numbers beginning with 'B' * PoE Digital Clock * Installation and Operation Manual * * For Clocks with Serial Numbers beginning with 'B' * Table of Contents Introduction...1 Introduction...1 Introduction...1 1 Introduction...1 2 Installation...1

More information

RoboRemo User Manual v1.9.1

RoboRemo User Manual v1.9.1 RoboRemo User Manual v1.9.1 Table of Contents General Description...3 Bluetooth / WiFi / Ethernet / USB modules...4 Available interface items...6 Building the interface...8 Common edit s...9 Button edit

More information

isma-b-mg-ip User Manual Global Control 5 Sp. z o.o. Poland, Warsaw

isma-b-mg-ip User Manual Global Control 5 Sp. z o.o. Poland, Warsaw isma-b-mg-ip User Manual Global Control 5 Sp. z o.o. Poland, Warsaw www.gc5.pl Table of content 1 Introduction... 4 1.1 Revision history... 5 1.2 Safety rules... 5 1.3 Technical specifications... 6 1.4

More information

CC828 GPRS Communication Protocol

CC828 GPRS Communication Protocol CC828 GPRS Communication Protocol This Protocol is used for communication between real time tracking platform server and the tracker device, command & message from server to device is download command

More information

Protocol Gateway IEC Master/Slave IEC Client/Server

Protocol Gateway IEC Master/Slave IEC Client/Server Atop Technologies, Inc. Protocol Gateway IEC60870-5-101 Master/Slave IEC60870-5-104 Client/Server Protocol and enode Designer configuration enode Configuration Manual V1.2 September 29 th, 2017 CLIENT/SERVER

More information

FlexNetViewer HD Management Utility

FlexNetViewer HD Management Utility FlexNetViewer HD Management Utility Copyright Copyright 2010 CONTEC CO., LTD. ALL RIGHTS RESERVED. No part of this document may be copied or reproduced in any form by any means without prior written consent

More information

C1098 JPEG Module User Manual

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

More information

JNIOR Series 3 Release Notes Updated as of Monday, August 29, 2016

JNIOR Series 3 Release Notes Updated as of Monday, August 29, 2016 JNIOR Series 3 Release Notes Updated as of Monday, August 29, 2016 June 14 2016 4.8.614.2124 Fixed an issue where multiple MODBUS connections were violating the MODBUS store synchronization rules and overwriting

More information

tsh-700 Series User Manual

tsh-700 Series User Manual tsh-700 Series User Manual Tiny Serial Port Sharer Aug. 2017 Ver. 1.6 WARRANTY All products manufactured by ICP DAS are warranted against defective materials for a period of one year from the date of delivery

More information

VIDEOJET connect 7000

VIDEOJET connect 7000 VIDEOJET connect 7000 VJC-7000-90 en Operation Manual VIDEOJET connect 7000 Table of Contents en 3 Table of contents 1 Browser connection 7 1.1 System requirements 7 1.2 Establishing the connection 7

More information

19: I/O Devices: Clocks, Power Management

19: I/O Devices: Clocks, Power Management 19: I/O Devices: Clocks, Power Management Mark Handley Clock Hardware: A Programmable Clock Pulses Counter, decremented on each pulse Crystal Oscillator On zero, generate interrupt and reload from holding

More information

BB-HCM371A / BB-HCM381A

BB-HCM371A / BB-HCM381A Network Camera Model No. BB-HCM311A / BB-HCM331A BB-HCM371A / BB-HCM381A Additional Feature table The following features are added to the camera. Read both Operating Instructions manuals before starting

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

DetectWORKS License Plate Recognition System. User Manual.

DetectWORKS License Plate Recognition System. User Manual. DetectWORKS License Plate Recognition System. User Manual. Contents Overview...4 1. Installation Guide...5 1.1. Camera...5 1.1.1 Camera Model Choice...5 1.1.2 Camera mounting...5 1.1.3 Capture at night...6

More information

User s Guide [Network Administrator]

User s Guide [Network Administrator] User s Guide [Network Administrator] Table of contents 1 Introduction 1.1 Welcome... 1-2 1.1.1 User's guides... 1-2 1.1.2 User's Guide... 1-2 1.2 Conventions used in this manual... 1-3 1.2.1 Symbols used

More information

PoE DotMatrix Clock. * Installation and Operation Manual *

PoE DotMatrix Clock. * Installation and Operation Manual * PoE DotMatrix Clock * Installation and Operation Manual * Table of Contents 1 Introduction...1 2 Installation...1 2.1 PoE Connection...1 2.2 Network...1 2.3 Mounting...1 2.3.1 Surface Mounting to Drywall...1

More information

AN4 QCA7000 SPI / UART Protocol

AN4 QCA7000 SPI / UART Protocol AN4 QCA7000 SPI / UART Protocol I2SE GmbH: Christian Aurich, Stefan Wahren June 14, 2018 1/11 CONTENTS CONTENTS Contents 1 Revisions 3 2 Introduction 3 3 SPI Physical Layer 3 4 UART Physical Layer 3 5

More information

GT-400 User Guide for Attendance Enterprise 2.1

GT-400 User Guide for Attendance Enterprise 2.1 GT-400 User Guide for Attendance Enterprise 2.1 (Latest update: http://www.infotronics.com/ae2.1/gt400_userguide.pdf) InfoTronics, Inc. 2014 All Rights Reserved InfoTronics is a registered trademark of

More information

Serial Communications Guide

Serial Communications Guide M-5000 Smart Ultrasonic Sensor Serial Communications Guide Page 1 of 14 Serial Communications Guide MassaSonic TM M-5000 Smart Ultrasonic Sensors MASSA PRODUCTS CORPORATION 280 Lincoln Street Hingham,

More information

PF2100 MODBUS LOGGER CARD SYSTEM SPECIFICATION. v1.0 DRAFT Revised Dec 4, 2014 Last Revised by Alex Messner

PF2100 MODBUS LOGGER CARD SYSTEM SPECIFICATION. v1.0 DRAFT Revised Dec 4, 2014 Last Revised by Alex Messner PF2100 MODBUS LOGGER CARD SYSTEM SPECIFICATION Revised Last Revised by Alex Messner This page was intentionally left blank. Table of Contents 1 Overview... 2 2 User Interface... 3 2.1 LEDs... 3 2.2 Buttons...

More information

WiMOD LR Base Host Controller Interface

WiMOD LR Base Host Controller Interface WiMOD LR Base Host Controller Interface Specification Version 1.7 Document ID: 4100/40140/0062 IMST GmbH Carl-Friedrich-Gauß-Str. 2-4 47475 KAMP-LINTFORT GERMANY Introduction Document Information File

More information

Mitsubishi Simple Motion Module MELSEC-L Series LD77MS16

Mitsubishi Simple Motion Module MELSEC-L Series LD77MS16 Mitsubishi Simple Motion Module MELSEC-L Series LD77MS16 Sample Screen Manual Mitsubishi Electric Corporation Using the Samples The sample screen data and files such as the instruction manual can be used

More information

Managing System of Standalone EAP

Managing System of Standalone EAP Managing System of Standalone EAP CHAPTERS 1. Configure the User Account 2. Configure the System Time 3. Reboot and Reset the EAP 4. Backup and Restore the Configuration 5. Update the Firmware This guide

More information

Introduction to Cisco TV CDS Software APIs

Introduction to Cisco TV CDS Software APIs CHAPTER 1 Cisco TV Content Delivery System (CDS) software provides two sets of application program interfaces (APIs): Monitoring Real Time Streaming Protocol (RTSP) Stream Diagnostics The Monitoring APIs

More information

FIFOTRACK PARAMETER TOOL USER GUIDE V1.1

FIFOTRACK PARAMETER TOOL USER GUIDE V1.1 FIFOTRACK PARAMETER TOOL USER GUIDE V1.1 Copyright 2015 fifotrack All rights reserved 1 Copyright and Disclaimer: All copyrights belong to Shenzhen fifotrack Solution Co., Ltd. You are not allowed to revise,

More information

LDV Communications Specification

LDV Communications Specification LDV6x-0308m - 1/22 Models: LDV6S and LDV6U LDV Communications Specification 2/19/2002 Rev 0.1 Created document draft JDS 2/22/2002 Rev 0.11 Added instructions on the use of Broadcast Messages JDS 3/18/2002

More information

WRTU Client User Manual. Date: 29 May, 2014 Document Revision: 1.05

WRTU Client User Manual. Date: 29 May, 2014 Document Revision: 1.05 WRTU Client User Manual Date: 29 May, 2014 Document Revision: 1.05 2014 by BiPOM Electronics, Inc. All rights reserved. WRTU Client User Manual. No part of this work may be reproduced in any manner without

More information

Veo Europe VSD-2000_PT_IR Observer IP Speed Dome Pan/Tilt with Infra/Red Products Series. User Manual & Installation Guide

Veo Europe VSD-2000_PT_IR Observer IP Speed Dome Pan/Tilt with Infra/Red Products Series. User Manual & Installation Guide Page 1 of 32 Veo Europe VSD-2000_PT_IR Observer IP Speed Dome Pan/Tilt with Infra/Red Products Series User Manual & Installation Guide Version: 1.0 Date: August 24, 2005 Page 2 of 32 Table of Contents

More information

Camera Browser Interface

Camera Browser Interface Camera Browser TINYON IP 2000 WI / TINYON IP 2000 PIR en Software manual Camera Browser Table of Contents en 3 Table of contents 1 Browser connection 11 1.1 System requirements 11 1.2 Establishing the

More information

Version Upgrade Instructions on the Pluto System

Version Upgrade Instructions on the Pluto System Version Upgrade Instructions on the Pluto System Instructions: The major version is the released unified version, including four minor versions, which give priority to the PlutoManager version; Upgraded

More information

WV-NS202. Network Operating Instructions. Network Camera. Model No.

WV-NS202. Network Operating Instructions. Network Camera. Model No. Network Camera Network Operating Instructions Model No. WV-NS202 LOCK OPEN WV-NS202 Before attempting to connect or operate this product, please read these instructions carefully and save this manual for

More information

ROC Plus Protocol. Specification Manual. Form A6127. Flow Computer Division. Part Number D301180X0012 January 2007

ROC Plus Protocol. Specification Manual. Form A6127. Flow Computer Division. Part Number D301180X0012 January 2007 Form A6127 Part Number D301180X0012 January 2007 ROC Plus Protocol Specification Manual Flow Computer Division Website: www.emersonprocess.com/flow Revision Tracking Sheet January 2007 This manual is periodically

More information

APPLICATION NOTES. Advanced Graphical Interface - AGI Internal PLC (CODESYS V3) SHENDONG

APPLICATION NOTES. Advanced Graphical Interface - AGI Internal PLC (CODESYS V3) SHENDONG APPLICATION NOTES Advanced Graphical Interface - AGI Internal PLC (CODESYS V3) SHENDONG CODESYS V3 logic running on AGI 300/400 series product Support of Modbus/TCP and RTU communication Use of remote

More information

ZENDA Manager User Guide. Applicable Model: ZD-VT1

ZENDA Manager User Guide. Applicable Model: ZD-VT1 ZENDA Manager User Guide Applicable Model: ZD-VT1 Change History File Name ZENDA Manager User Guide Created By Owen Cheng Project ZD-VT1 Creation Date 2016-01-18 Update Date 2016-02-02 Subproject User

More information

User Guide. BrightAuthor Release 2.0. BrightSign HD110, HD210, HD210w, HD410, HD810, HD1010, and HD1010w. COMPATIBLE WITH

User Guide. BrightAuthor Release 2.0. BrightSign HD110, HD210, HD210w, HD410, HD810, HD1010, and HD1010w.   COMPATIBLE WITH User Guide BrightAuthor Release 2.0 COMPATIBLE WITH BrightSign HD110, HD210, HD210w, HD410, HD810, HD1010, and HD1010w www.brightsign.biz Copyright Copyright 2010 by BrightSign, LLC. All rights reserved.

More information

LE840/LE850. Printer Setting Tool Manual Technical Reference

LE840/LE850. Printer Setting Tool Manual Technical Reference LE840/LE850 Printer Setting Tool Manual Technical Reference Table of Contents 1. INTRODUCTION 1 SUPPORTED PRINTERS... 1 FEATURES... 1 OUTLINE OF THE FUNCTIONS... 2 NOTATION... 2 SCREENS USED IN THIS DOCUMENT...

More information

Network Camera. Technical Manual

Network Camera. Technical Manual Network Camera Technical Manual 1 Notices The information in this documentation is subject to change without notice and does not represent any commitment on behalf of HIKVISION. HIKVISION disclaims any

More information

Mitsubishi Programmable Controller MELSEC iq-f Series FX5U-32MCPU (Ethernet Connection) Sample Screen Manual. Mitsubishi Electric Corporation

Mitsubishi Programmable Controller MELSEC iq-f Series FX5U-32MCPU (Ethernet Connection) Sample Screen Manual. Mitsubishi Electric Corporation Mitsubishi Programmable Controller MELSEC iq-f Series FX5U-32MCPU (Ethernet Connection) Sample Screen Manual Mitsubishi Electric Corporation Using the Samples The sample screen data and files such as the

More information

2.4GHz Digital Wireless 7 LCD Surveillance Kit

2.4GHz Digital Wireless 7 LCD Surveillance Kit 2.4GHz Digital Wireless 7 LCD Surveillance Kit User Manual QC-3762 Box Contents: 1 x 7 LCD Monitor 1 x Wireless Camera 2 x Mains Power Adaptors 1 x Camera Antenna 1 x Mounting Hardware Product Diagram:

More information

QT-Brightek Chip LED Series IR LED with Dome Lens

QT-Brightek Chip LED Series IR LED with Dome Lens QT-Brightek Chip LED Series 1208 IR LED with Dome Lens Part No.: QBLP653-IR1 Product: QBLP653-IR1 Date: August 08, 2017 Page 1 of 9 Table of Contents: Introduction... 3 Electrical / Optical Characteristic

More information

JZTEK DVR Operation Manual

JZTEK DVR Operation Manual JZTEK DVR Operation Manual Dear Valued Client, Windows10 version Thank you for your trust about JZTEK! If you re satisfied with this JZTEK product, we would sincerely appreciate providing your positive

More information

Contents LOCAL MANAGEMENT LOGIN INTERFACE RECORD SEARCH: LOG SEARCH SYSTEM STATUS BASIC SETUP.

Contents LOCAL MANAGEMENT LOGIN INTERFACE RECORD SEARCH: LOG SEARCH SYSTEM STATUS BASIC SETUP. User Manual For MD AHD MDVR Copyright 2013-2016, Howen Technology Co., Ltd All Rights Reserved 1-59 Contents 1. 2. LOCAL MANAGEMENT... 3 2.1. LOGIN INTERFACE... 3 2.2. RECORD SEARCH:...6 2.3. LOG SEARCH...

More information

Kinetis Flash Tool User's Guide

Kinetis Flash Tool User's Guide NXP Semiconductors Document Number: MBOOTFLTOOLUG User's Guide Rev 1, 05/2018 Kinetis Flash Tool User's Guide Contents Contents Chapter 1 Introduction...4 Chapter 2 System Requirements... 5 Chapter 3 Tool

More information

LICENSE PLATE RECOGNITION SETUP AND FIELD INSTALLATION GUIDE

LICENSE PLATE RECOGNITION SETUP AND FIELD INSTALLATION GUIDE LICENSE PLATE RECOGNITION SETUP AND FIELD INSTALLATION GUIDE This document was created to benchmark the settings and tools needed to successfully deploy LPR with the ipconfigure s Enterprise Surveillance

More information

WiMOD LR Base Plus Host Controller Interface

WiMOD LR Base Plus Host Controller Interface WiMOD LR Base Plus Host Controller Interface Specification Version 1.2 Document ID: 4000/40140/0125 IMST GmbH Carl-Friedrich-Gauß-Str. 2-4 47475 KAMP-LINTFORT GERMANY Introduction Document Information

More information

Communications Protocol

Communications Protocol 28 Kaysal Court, Armonk, NY 10504 914.598.1647 Communications Protocol For the Mirage Audio System Data acquisition and control of Autonomic equipment is performed by home automation systems or personal

More information

Network Camera Technical Manual

Network Camera Technical Manual Network Camera Technical Manual 1 Notices The information in this documentation is subject to change without notice and does not represent any commit ment on behalf of HIKVISION. HIKVISION disclaims any

More information

Yamaha LAN Monitor. User Guide

Yamaha LAN Monitor. User Guide Yamaha LAN Monitor User Guide EN Information The software and this document are the exclusive copyrights of Yamaha Corporation. Copying or modifying the software or reproduction of this document, by any

More information

Future Design Controls, Inc. VR Series (VR06 & VR18) Firmware Release Notes; v0.94 to v2.37

Future Design Controls, Inc. VR Series (VR06 & VR18) Firmware Release Notes; v0.94 to v2.37 V2.38 (10-30-2013) [applies to both VR06 & VR18] 1. Bug fixed: Filter bounce for alarm function V2.37 (07-2010) [applies to both VR06 & VR18] 1. Compatible with Future Design Controls DAQ software (IO

More information

DATA LOGGER (Version V1.3)

DATA LOGGER (Version V1.3) WYLER AG Im Hölderli CH-8405 WINTERTHUR Switzerland Tel. 0041 (0) 52 233 66 66 Fax. 0041 (0) 52 233 20 53 Homepage: http://www.wylerag.com E-Mail: wyler@wylerag.com Operating instructions DATA LOGGER (Version

More information

mcamview HD for ipad User Manual

mcamview HD for ipad User Manual mcamview HD for ipad User Manual Seeing the video from anywhere 1. INSTALL AND STARTUP MCAMVIEW HD... 4 2. THE LAYOUT OF MCAMVIEW HD... 5 3. MANAGE MCAMVIEW HD IP CAMERAS... 6 3.1 NEW CAMERA... 6 3.2.

More information

Portable Data Collector Series Z-9000 ( Version 1.0) User s Manual ZEBEX INDUSTRIES INC.

Portable Data Collector Series Z-9000 ( Version 1.0) User s Manual ZEBEX INDUSTRIES INC. Portable Data Collector Series Z-9000 ( Version 1.0) User s Manual ZEBEX INDUSTRIES INC. WWW.ZEBEX.COM Revision History Changes to the original manual are listed below: Version Date Description of Version

More information

How to configure Hikvision LPR Function via IVMS-5200P

How to configure Hikvision LPR Function via IVMS-5200P How to configure Hikvision LPR Function via IVMS-5200P Property in copyright belongs to Hikvision. 1 1 Purpose Vehicle Detection is available for the road traffic monitoring. In Vehicle Detection, the

More information

USER MANUAL. BioPro SA50 Fingerprint & Palm Terminal. Version: 1.0 Date: August Inch TFT Terminal User Manual 1

USER MANUAL. BioPro SA50 Fingerprint & Palm Terminal. Version: 1.0 Date: August Inch TFT Terminal User Manual 1 USER MANUAL BioPro SA50 Fingerprint & Palm Terminal Version: 1.0 Date: August. 2017 2.4 Inch TFT Terminal User Manual 1 About This Manual This manual introduces the operation of user interfaces and menu

More information

Encoder Core. API Specification. Revision: SOC Technologies Inc.

Encoder Core. API Specification. Revision: SOC Technologies Inc. Encoder Core API Specification Revision: 2.2 2018.01.29 2018 SOC Technologies Inc. SOC is disclosing this user manual (the Documentation ) to you solely for use in the development of designs to operate

More information

ECE 435 Network Engineering Lecture 9

ECE 435 Network Engineering Lecture 9 ECE 435 Network Engineering Lecture 9 Vince Weaver http://web.eece.maine.edu/~vweaver vincent.weaver@maine.edu 2 October 2018 Announcements HW#4 was posted, due Thursday 1 HW#3 Review md5sum/encryption,

More information

CMOS CAMERA MODULE JC418M-J01

CMOS CAMERA MODULE JC418M-J01 CMOS CAMERA MODULE JC418M-J01 Deqing Jiahe Electronic Technology Co., Ltd. TEL: +86-572-8051676 ext. 803 FAX: +86-572-8051676 ext. 801 sales@jiahe-electronic.com Application The JC418M-J01 JPEG compression

More information

Modbus on SenseAir S8

Modbus on SenseAir S8 Gas and Air Sensors Engineering specification Modbus on SenseAir S8 Table of contents PRELIMINARY 1. Revision information... 3 2. General... 4 3. Byte transmission.... 5 4. Modbus registers on sensor....

More information

CP30/G30/MC31 Firmware Version 3100 Known Issues

CP30/G30/MC31 Firmware Version 3100 Known Issues CP30/G30/MC31 Firmware Version 3100 Known Issues Introduction This document lists issues that have been identified with firmware version 3100 for the Kingfisher CP30/G30/MC31 modules. Where possible, workarounds

More information

LILIN CMX ANPR Software Manual Draft

LILIN CMX ANPR Software Manual Draft LILIN CMX ANPR Software Manual Draft Chapter 1. CMX ANPR Setup... 8 Chapter 1-1. ANPR ROI Area... 8 Chapter 1-2. Characters Min and Max Heights... 9 Chapter 1-3. Min and Max Characters Length of a Plate...

More information

WiMOD LoRaWAN EndNode Modem HCI Specification

WiMOD LoRaWAN EndNode Modem HCI Specification WiMOD LoRaWAN EndNode Modem HCI Specification Specification Version 1.13 Document ID: 4100/40140/0073 IMST GmbH Carl-Friedrich-Gauß-Str. 2-4 47475 KAMP-LINTFORT GERMANY Introduction Document Information

More information

UNIT V. Computer Networks [10MCA32] 1

UNIT V. Computer Networks [10MCA32] 1 Computer Networks [10MCA32] 1 UNIT V 1. Explain the format of UDP header and UDP message queue. The User Datagram Protocol (UDP) is a end-to-end transport protocol. The issue in UDP is to identify the

More information

ETC II Modbus Communications Protocol Reference Guide

ETC II Modbus Communications Protocol Reference Guide ETC II Modbus Communications Protocol Reference Guide SATEC Ltd. BG0595 Rev. A1 Every effort has been made to ensure that the material herein is complete and accurate. However, the manufacturer is not

More information

Smart Monitor ZG2 User s Manual

Smart Monitor ZG2 User s Manual Smart Monitor ZG2 User s Manual Smart Sensors ZG2 Series 2D Profile Measuring Sensors CONTENTS SMART MONITOR ZG2 USER S MANUAL...1 SECTION 1 PREPARATIONS...2 Installing the Smart Monitor ZG2 on a Computer...

More information

Perceptive Intelligent Capture

Perceptive Intelligent Capture Perceptive Intelligent Capture Licensing Guide Version: 5.8.x Written by: Product Knowledge, R&D Date: Friday, December 08, 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

H3C Intrusion Prevention System. Command Reference. Hangzhou H3C Technologies Co., Ltd. Document Version: 5PW

H3C Intrusion Prevention System. Command Reference. Hangzhou H3C Technologies Co., Ltd.   Document Version: 5PW H3C Intrusion Prevention System Command Reference Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Document Version: 5PW103-20101027 Copyright 2008-2010, Hangzhou H3C Technologies Co., Ltd. and its

More information

Kinetis Flash Tool User's Guide

Kinetis Flash Tool User's Guide Freescale Semiconductor Document Number: KFLASHTOOLUG User's Guide Rev. 0, 04/2016 Kinetis Flash Tool User's Guide 1 Introduction The Kinetis Flash Tool is a GUI application on Windows OS, aiming to offer

More information

Q.link protocol ver Q.link protocol. QuickWood Automation /16

Q.link protocol ver Q.link protocol. QuickWood Automation /16 Q.link protocol QuickWood Automation 2003 1/16 1 Revision history Version Date Responsible 1.0 03-10-16 JUK Document created 2/16 Table of Contents 1 Revision history...2 2 References...4 3 Introduction...4

More information