Reading Aquistar Smart Sensors with Campbell Loggers

Size: px
Start display at page:

Download "Reading Aquistar Smart Sensors with Campbell Loggers"

Transcription

1 Introduction Instrumentation Northwest now offers an easy-to-read Modbus version for several of their popular AquiStar Smart Sensors. These sensors communicate via Modbus RTU and directly return measurement readings, without any further math on the part of the host system. Currently, this feature is available on the PT2X Pressure/Temperature Sensor, the CT2X Conductivity/Temperature/Pressure Sensor, the T32 1Wire Temperature Logger, the GDL Datalogger, and the TempHion ph/ise/redox sensor. The purpose of this document is to provide information on how to read INW s AquiStar Smart Sensors with a Campbell datalogger via Modbus. Refer also to Modbus Direct Read on AquiStar Smart Sensors (Document # 9C0225) for information on available measurement units on the various sensors. Wiring On a CR1000, sensors can be connected using either the Com1, Com2, Com3, or Com4 ports or the RS232 port. Some loggers do not have an RS232 port. On these loggers, you will have to use the Com1, Com2, etc. ports. Using the Com1, Com2, Com3, or Com4 Port ENGINEERING DEPARTMENT Page 1 of 10

2 Using the RS232 Port on a CR1000 Taking Measurements Modbus Function Measurements can be read using Modbus function 03 Read Holding Registers. Data Format The data is returned as a 32-bit IEEE floating-point value, high word first, also referred to as big-endian or float inverse. Reading Registers You can read single values by reading the register set for the desired value. For example, to read only conductivity in a linear format from a CT2X, you would read two registers starting at You can also read any contiguous sets of registers by starting at the register for the first value you want to read and specifying how many registers to read (two per channel). For example, to read all channels on a standard GDL, you would read 14 registers starting at ENGINEERING DEPARTMENT Page 2 of 10

3 Register Addresses for PT2X, CT2X, TempHion, and T32 Sensor Type PT2X PT2X CT2X TempHion T32 Firmware 1.5 >= 2.1 >= 1.5 >= 1.1 any Register Address Pressure Temperature Temperature Temperature Temperature Temperature Pressure Conductivity - Linear mv-1 (in mv) Temperature Conductivity - non-linear mv-2 (in mv) Temperature Pressure mv-3 (in mv) Temperature mv-1 (in ph, ppm, or Eh) Temperature mv-2 (in ph, ppm, or Eh) Temperature mv-3 (in ph, ppm, or Eh) Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature - 32 ENGINEERING DEPARTMENT Page 3 of 10

4 Register Addresses for GDL Sensor Type GDL GDL GDL GDL GDL Version Standard Dissolved Oxygen Heart Rate Monitor Rain Bucket Generic Digital Firmware >= 2.5 >= 2.5 >= 2.5 >= 2.5 >= 2.5 Register Address Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature Temperature mv mv mv mv mv Voltage Voltage Voltage Voltage Voltage Voltage Voltage Voltage Voltage Voltage ma 4-20 ma 4-20 ma 4-20 ma 4-20 ma ma 4-20 ma 4-20 ma 4-20 ma 4-20 ma DO channel 1 Heart Rate Rainfall Custom Digital DO Temperature - 1 Custom Digital DO channel 2 Custom Digital DO Temperature - 2 Custom Digital DO channel 3 Custom Digital DO Temperature DO channel DO Temperature - 4 Sample Code The following pages contain sample code. The first sample reads a contiguous set of channels from a PT2X. To change this sample to work with your sensor, you will need to assign your sensor address, the starting register, number of channels to read, and the output column headers. The code is marked where you need to make the changes. The second sample reads two individual channels (linear conductivity and pressure) from a CT2X. To change this sample to work with your sensor, you will need to assign your sensor address, the starting registers, the final value array size, the number of output columns, the output column headers, and the number of reading sets. The code is marked where you need to make the changes In both samples there is a subroutine called DecodeIEEEFloat. This code should not be changed. It is called after the reading has been taken to convert the two register readings into one 32-bit IEEE Float format number. ENGINEERING DEPARTMENT Page 4 of 10

5 Direct Read Sample Code Range of Channels 'CR1000 Series Datalogger 'DirectRead_sample_range of channels.cr1 'Copyright Instrumentation Northwest, Inc 'This program reads an INW Smart Sensor beginning with the first channel 'and reading two channels in a row 'This particular version reads a PT2X with firmware 2.1 or higher 'Temperature channel first and then the Pressure channel. '*************** Constants and Variables ********************************************* Const SNSR_ADDR = 3 ' Assign sensor address here!!! Const TAKE_MEASUREMENT = ' Modbus address to begin readings Const NUM_CHANNELS = 2 ' Number of channels to read Const NUM_REGISTERS = NUM_CHANNELS*2 Public Result Public sensor(num_registers) As Long ' Array to hold values read Public values(num_channels) ' Array to hold final values Assign your sensor address, the starting register, and number of channels to read here. Public temperature As Float Public pressure As Float ' Temperature ' Pressure '*************** Define DataTables here, as desired ************************************ DataTable(Readings,True,-1) Sample(1,values(1),IEEE4) FieldNames("Temperature") Sample(1,values(2),IEEE4) FieldNames("Pressure") EndTable 'Column header for 1st channel 'Column header for 2nd channel Assign output column headers here. '************************* Subroutine DecodeIEEEFloat ************************************* ' This subroutine takes two 16-bit registers and decodes them into ' a single IEEE 32-bit floating point value. ' This subroutine is called after taking Modbus readings to decode the data. ' You should not modify this subroutine, just use as is. Sub DecodeIEEEFloat (HW, LW, r) '************************************************************************************** 'Take 32-bit value comprising two words, high word first, 'and convert to IEEE bit floating point 'Bit 31: sign bit 'Bits 30-23: exponent 'Bits 22-0: mantisssa ENGINEERING DEPARTMENT Page 5 of 10

6 Dim man Dim ex Dim sign Dim a Dim b Dim c 'mantissa 'exponent 'sign 'interim value 'interim value 'interim value 'special case If HW = 0 AND LW = 0 Then r = 0 Exit Sub End If 'Pull the 23 bit mantissa from the two separate words man = LW + ((HW And ((2 ^ 7) - 1)) * 2 ^ 16) 'Get exponent a = 2 ^ 7 b = (2 ^ 8) - 1 ex = (Int(HW / a)) And b 'Get sign 'sign = Int(HW / (2 ^ 16)) And (2 ^ 1-1) If HW < 0 Then sign = 1 Else sign = 0 End If 'Compute final value c = 1 + man / (2 ^ 23) r = ((-1) ^ sign) * c * (2 ^ (ex - 127)) End Sub '*********************** Begin Program ************************************************* BeginProg Dim i '*************************************************************************************** '**************** Scan Loop ************************************************** ENGINEERING DEPARTMENT Page 6 of 10

7 Scan (5,Sec,0,0) 'ModBusMaster ( ResultCode, ComPort, BaudRate, ModBusAddr, Function, Variable, ' Start, Length, Tries, TimeOut ) 'wake up the sensor and wait 1 second for it to warm up ModBusMaster (Result,ComRS232,38400,SNSR_ADDR,3,sensor(),TAKE_MEASUREMENT,NUM_REGISTERS,3,100) Delay (0,1,sec) 'take a measurement ModBusMaster (Result,ComRS232,38400,SNSR_ADDR,3,sensor(),TAKE_MEASUREMENT,NUM_REGISTERS,3,100) ' extract values, convert each set of two registers into one floating point value and put in values array For i = 1 To NUM_REGISTERS step 2 DecodeIEEEFloat (sensor(i), sensor(i+1), values((i+1)/2)) Next i CallTable Readings NextScan EndProg Direct Read Sample Results Range of Channels TIMESTAMP RECORD Temperature Pressure 9/23/ : /23/ : /23/ : Direct Read Sample Code Individual Channels 'CR1000 Series Datalogger 'DirectRead_sample_individual channels.cr1 'Copyright Instrumentation Northwest, Inc 'This program reads two individual channels from an INW Smart Sensor 'This particular version reads the Linear Conductivity value and the Pressure ' from a CT2X with firmware 1.5 or higher '*************** Constants and Variables ********************************************* Const SNSR_ADDR = 1 ' Assign sensor address here!!! Const TAKE_MEASUREMENT1 = ' Modbus address for first reading '(in this case conductivity (linear) Const TAKE_MEASUREMENT2 = ' Modbus address for second reading '(in this case pressure) Assign your sensor address and the starting register for each channel you want to read. ENGINEERING DEPARTMENT Page 7 of 10

8 'Add further Consts as are needed for the number of individual channels you want to read. Public Result Public reading(2) As Long ' Array to hold values read each time a channel is read Public values(2) As Float ' Array to hold final values, one value per channel '*************** Define DataTables here, as desired ************************************ DataTable(Readings,True,-1) Sample(1,values(1),IEEE4) FieldNames("Conductivity") Sample(1,values(2),IEEE4) FieldNames("Pressure") EndTable 'Column header for 1st channel 'Column header for 2nd channel '************************* Subroutine DecodeIEEEFloat ************************************* ' This subroutine takes two 16-bit registers and decodes them into ' a single IEEE 32-bit floating point value. ' This subroutine is called after taking Modbus readings to decode the data. ' You should not modify this subroutine, just use as is. Sub DecodeIEEEFloat (HW, LW, r) '************************************************************************************** 'Take 32-bit value comprising two words, high word first, 'and convert to IEEE bit floating point 'Bit 31: sign bit 'Bits 30-23: exponent 'Bits 22-0: mantisssa Dim man 'mantissa Dim ex 'exponent Dim sign 'sign Dim a 'interim value Dim b 'interim value Dim c 'interim value 'special case If HW = 0 AND LW = 0 Then r = 0 Exit Sub End If Make the size of this array equal to the number of channels you want to read. Assign output column headers here, adding Sample statements for each channel you want to read 'Pull the 23 bit mantissa from the two separate words man = LW + ((HW And ((2 ^ 7) - 1)) * 2 ^ 16) 'Get exponent a = 2 ^ 7 b = (2 ^ 8) - 1 ex = (Int(HW / a)) And b ENGINEERING DEPARTMENT Page 8 of 10

9 'Get sign 'sign = Int(HW / (2 ^ 16)) And (2 ^ 1-1) If HW < 0 Then sign = 1 Else sign = 0 End If 'Compute final value c = 1 + man / (2 ^ 23) r = ((-1) ^ sign) * c * (2 ^ (ex - 127)) End Sub '*********************** Begin Program ************************************************* BeginProg Dim i '*************************************************************************************** '**************** Scan Loop ************************************************** Scan (5,Sec,0,0) 'ModBusMaster ( ResultCode, ComPort, BaudRate, ModBusAddr, Function, Variable, ' Start, Length, Tries, TimeOut ) 'wake up the sensor and wait 1 second for it to warm up ModBusMaster (Result,ComRS232,38400,SNSR_ADDR,3,reading(),TAKE_MEASUREMENT1,2,3,100) Delay (0,1,sec) 'Read first channel ModBusMaster (Result,ComRS232,38400,SNSR_ADDR,3,reading(),TAKE_MEASUREMENT1,2,3,100) ' extract values, convert set of two registers into one floating point value and put in values array DecodeIEEEFloat (reading(1), reading(2)), values(1)) 'Read second channel ModBusMaster (Result,ComRS232,38400,SNSR_ADDR,3,reading(),TAKE_MEASUREMENT2,2,3,100) ' extract values, convert set of two registers into one floating point value and put in values array DecodeIEEEFloat (reading(1), reading(2)), values(2)) EndProg 'Repeat for additional channels as needed CallTable Readings NextScan Repeat the channel reading code for each channel you want to read, changing the register address and values array location, as needed. ENGINEERING DEPARTMENT Page 9 of 10

10 Direct Read Sample Results Individual Channels TIMESTAMP RECORD Conductivity Pressure 9/23/ : /23/ : /23/ : /23/ : AquiStar is a registered trademark of Instrumentation Northwest, Inc. Modbus is a registered trademark of Schneider Electric. ENGINEERING DEPARTMENT Page 10 of 10

APPLICATION NOTE. Vaisala DRS511 Road Sensor CAMPBELL SCIENTIFIC, INC. App. Note Code: 2MI-R. Copyright (C) 2007 Campbell Scientific, Inc.

APPLICATION NOTE. Vaisala DRS511 Road Sensor CAMPBELL SCIENTIFIC, INC. App. Note Code: 2MI-R. Copyright (C) 2007 Campbell Scientific, Inc. APPLICATION NOTE App. Note Code: 2MI-R Vaisala DRS511 Road Sensor CAMPBELL SCIENTIFIC, INC. W H E N M E A S U R E M E N T S M A T T E R Copyright (C) 2007 Campbell Scientific, Inc. Vaisala DRS511 Road

More information

1) Microcom GTX User s Manual 2) Microcom GTX GUI Software 3) Campbel Scientific CR1000 User s Manual 4) Campbell Scientific LoggerNet Software

1) Microcom GTX User s Manual 2) Microcom GTX GUI Software 3) Campbel Scientific CR1000 User s Manual 4) Campbell Scientific LoggerNet Software Application Note: Microcom GTX Modulator uapp222 (v1.0) July 12,2005 Interfacing the MICROCOM DESIGN GTX Satellite Transmitter to the Campbell Scientific CR1000 Data Logger Author: Richard Schwarz PRELIMINARY

More information

INSTRUCTION MANUAL. Reading. AquiStar Smart Sensors. With an INW Panel Meter

INSTRUCTION MANUAL. Reading. AquiStar Smart Sensors. With an INW Panel Meter INSTRUCTION MANUAL Reading AquiStar Smart Sensors With an INW Panel Meter Table of Contents Introduction...3 What is an INW Panel Meter for Reading AquiStar Smart Sensors?...3 Initial Inspection and Handling...3

More information

AquiStar TempHion (SDI-12 & Modbus )

AquiStar TempHion (SDI-12 & Modbus ) Table of Contents Table of Contents... 1 Specifications... 1 SDI-12 Command Nomenclature... 1 SDI-12 Commands... 2 Setup Commands... 2 Measurement Commands... 2 Request Measurement... 2 Request Measurement

More information

AquiStar TempHion (SDI-12 & Modbus )

AquiStar TempHion (SDI-12 & Modbus ) Table of Contents Table of Contents... 1 Specifications... 1 SDI-12 Command Nomenclature... 1 SDI-12 Commands... 2 Setup Commands... 2 Measurement Commands... 2 Request Measurement... 2 Request Measurement

More information

How to Integrate Digiquartz Intelligent Products with Campbell Scientific CR1000 Series Data Loggers

How to Integrate Digiquartz Intelligent Products with Campbell Scientific CR1000 Series Data Loggers How to Integrate Digiquartz Intelligent Products with Campbell Scientific CR1000 Series Data Loggers The standard by which other standards are measured Paroscientific, Inc. 4500 148 th Ave. N.E. Redmond,

More information

AquaTroll 600 Configuration and MultiLogger Integration

AquaTroll 600 Configuration and MultiLogger Integration 5 Gould Road, PO Box 2155 New London, NH 03257 USA Voice: (603) 526-9800 info@canarysystems.com www.canarysystems.com AquaTroll 600 Configuration and MultiLogger Integration Sensor Application Note #31

More information

'CR1000 Series Datalogger '$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ' Declare CONSTANTS

'CR1000 Series Datalogger '$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ ' Declare CONSTANTS Table S2: Actual code used for running the CR1000 datalogger for system monitoring and control. Executable code is shown in black font; non-executable comments are in blue font. 'CR1000 Series Datalogger

More information

AquiStar CT2X (SDI-12 & Modbus )

AquiStar CT2X (SDI-12 & Modbus ) Table of Contents Table of Contents... 1 Specifications... 1 SDI-12 Command Nomenclature... 1 SDI-12 Commands... 1 Setup Commands... 1 Measurement Commands... 2 Request Measurement... 2 Request Measurement

More information

INSTRUCTION MANUAL. AquiStar GDL. Dissolved Oxygen Datalogger

INSTRUCTION MANUAL. AquiStar GDL. Dissolved Oxygen Datalogger INSTRUCTION MANUAL AquiStar GDL Dissolved Oxygen Datalogger Table of Contents 1 Introduction... 3 What is a GDL?... 3 Initial Inspection and Handling... 3 Do s and Don ts... 3 Getting Started... 4 GDL

More information

See below for software screens to guide you through the configuration and calibration of your sensor

See below for software screens to guide you through the configuration and calibration of your sensor Modbus sensor addendum Rev 3 1/4/19 Introduction Thank you for purchasing Sensorex Modbus water quality sensors. This instruction manual is an addendum to all product instructions that only covers calibration

More information

APPLICA TION NOTE Ott Parsivel Disdrometer Present Weather Sensor

APPLICA TION NOTE Ott Parsivel Disdrometer Present Weather Sensor APPLICATION NOTE App. Note Code: 2MI-U Rev. 1 Ott Parsivel Disdrometer Present Weather Sensor Copyright (C) December 2009 Campbell Scientifi c, Inc. This application note describes using the Ott parsivel

More information

Heavy Duty Datalogger Module

Heavy Duty Datalogger Module User's Guide Heavy Duty Datalogger Module Model 380340 Introduction Congratulations on your purchase of Extech s 380340 Datalogger Module. The Datalogger connects to and records data from Extech Heavy

More information

Heavy Duty Datalogger Module

Heavy Duty Datalogger Module User's Guide Heavy Duty Datalogger Module Model 380340 Introduction Congratulations on your purchase of Extech s 380340 Datalogger Module. The Datalogger connects to and records data from Extech Heavy

More information

AquaTemp Submersible Temperature Sensor. Using 8310 & ADAM mA Output Module

AquaTemp Submersible Temperature Sensor. Using 8310 & ADAM mA Output Module AquaTemp Submersible Temperature Sensor Using 8310 & ADAM-4024 4-20mA Output Module May 2014 Sutron Corporation Using Xpert2-9210B PPP SLL with Janus CDMA Modem 5/15/2014 pg. 2 1 Overview This Application

More information

Integration of ShapeAccelArray and Campbell Scientific CR800/CR1000 Data Loggers

Integration of ShapeAccelArray and Campbell Scientific CR800/CR1000 Data Loggers User Guide Integration of ShapeAccelArray and Campbell Scientific CR800/CR1000 Data Loggers Copyright 2012 by Measurand Inc. Notices Measurand shall have no liability for incidental or consequential damages

More information

INW PRODUCT GUIDE. AquiStar Smart Sensors. Instrumentation Northwest, Inc.

INW PRODUCT GUIDE. AquiStar Smart Sensors. Instrumentation Northwest, Inc. INW PRODUCT GUIDE AquiStar Smart Sensors Instrumentation Northwest, Inc. www.inwusa.com Table of Contents AquiStar Features and Benefits... 2 AquiStar Family of Smart Sensors... 4 Related Products... 6

More information

ma-bus Converter User Manual

ma-bus Converter User Manual mabus Converter mabus Converter 205910 mabus converter, small Field cabinet (I/O 2AI / 3DI) 205911 mabus converter, wide field cabinet with Display (I/O 2AI / 3DI) 295910 mabus converter, small Field cabinet

More information

'CR1000 Series Datalogger 'date: 'program author: RC Beeson. Const off = 0 Const on = -1 Const run = 1

'CR1000 Series Datalogger 'date: 'program author: RC Beeson. Const off = 0 Const on = -1 Const run = 1 This program for a CR1000 measuring 16 load cells from multiplexed through a AM16/32b multiplexer (in 4x4 mode) and controlling 16 independent irrigation valves using a SDM-CD16AC module. Comments of details

More information

Modbus Protocol For TGP03 / THP03

Modbus Protocol For TGP03 / THP03 [ 公司地址 ] Modbus Protocol For TGP03 / THP03 V2.0 Introduction This document describes the protocol detail of Modbus for TGP03 / THP03 Hardware interface - The interface on the sensor is RS-485. - Hardware

More information

INW Multi-Parameter. Smart Sensor and Datalogger ISO USA PROUDLY MADE IN THE

INW Multi-Parameter. Smart Sensor and Datalogger ISO USA PROUDLY MADE IN THE INW Multi-Parameter Smart Sensor and Datalogger PROUDLY MADE IN THE USA ISO 9001:2008 Certified Company INW MULTI-PARAMETER INSTRUCTIONS Table of Contents Introduction...5 What is the Multi-Parameter

More information

[ 公司地址 ] Modbus Protocol. For THS/THM 30X&80X_Temp.&Humididy & THS8X/THM8X_Dew Point Series V7.0

[ 公司地址 ] Modbus Protocol. For THS/THM 30X&80X_Temp.&Humididy & THS8X/THM8X_Dew Point Series V7.0 [ 公司地址 ] Modbus Protocol For THS/THM 30X&80X_Temp.&Humididy & THS8X/THM8X_Dew Point Series V7.0 Introduction Modbus Protocol of THS/THM30X&80X & THS8X/THM8X This document describes the protocol detail

More information

App. Note Code: 1D-W APPLICATION NOTE. DNP3 with Campbell Scientific Dataloggers 4/15. Copyright 2015 Campbell Scientific, Inc.

App. Note Code: 1D-W APPLICATION NOTE. DNP3 with Campbell Scientific Dataloggers 4/15. Copyright 2015 Campbell Scientific, Inc. App. Note Code: 1D-W APPLICATION NOTE DNP3 with Campbell Scientific Dataloggers 4/15 Copyright 2015 Campbell Scientific, Inc. DNP3 with Campbell Scientific Dataloggers What is DNP3? DNP3 (Distributed

More information

Interface BL232 with RS232/422/485 MODBUS and 0-10V outputs. Interface BL232

Interface BL232 with RS232/422/485 MODBUS and 0-10V outputs. Interface BL232 BIT LINE WEATHER INSTRUMENTS Interface BL232 with RS232/422/485 MODBUS and 0-10V outputs Qick and easy setup For domotic and building automation Wide Range power supply For solar and wind farm BIT LINE

More information

IFC 100 Supplementary instructions

IFC 100 Supplementary instructions IFC 100 Supplementary instructions Signal converter for electromagnetic flowmeters Description of Modbus interface Electronic Revision: ER 3.0.xx Modbus version: 1.0.xx KROHNE CONTENTS IFC 100 1 Important

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

INSTRUCTION MANUAL. AquiStar Aqua4Plus. Control Software for INW Smart Sensors

INSTRUCTION MANUAL. AquiStar Aqua4Plus. Control Software for INW Smart Sensors INSTRUCTION MANUAL AquiStar Aqua4Plus Control Software for INW Smart Sensors Table of Contents 1 Introduction... 3 What is Aqua4Plus?... 3 System Requirements... 3 About this Manual... 3 Connecting a Sensor

More information

Integrating HART Sensors with the Campbell CR1000 Datalogger

Integrating HART Sensors with the Campbell CR1000 Datalogger 5 Gould Road, PO Box 2155 New London, NH 03257 USA Voice: (603) 526-9800 info@canarysystems.com www.canarysystems.com Integrating HART Sensors with the Campbell CR1000 Datalogger Sensor Application Note

More information

Neon pr. ph/ ORP measurement. Applications. Description

Neon pr. ph/ ORP measurement. Applications. Description Easy handling by graphical menue Fitting for your application by modular setup Simple firmware update and configuration using SD-card Applications Process Water Drinking Water / Beverages Waste Water Treatment

More information

Technical Note: Interfacing a C-sense pco 2 Sensor to a Campbell Scientific CR1000 Datalogger

Technical Note: Interfacing a C-sense pco 2 Sensor to a Campbell Scientific CR1000 Datalogger This document assumes you have experience connecting to your CR1000. The procedure of interfacing the C-sense is described in two sections: Wiring the C-sense to the CR1000 Running PC200W to configure

More information

Modbus Protocol For FTS/FTM 3x&8x

Modbus Protocol For FTS/FTM 3x&8x [ 公司地址 ] Modbus Protocol For FTS/FTM 3x&8x V3.0 Introduction This document describes the protocol detail of Modbus for FTSXX Hardware interface - The interface on the sensor is RS-485. - Hardware named

More information

Controls Division. Mounting. Mounting Terminal connections main circuit. Terminal connections control circuit. Insulation characteristics

Controls Division. Mounting. Mounting Terminal connections main circuit. Terminal connections control circuit. Insulation characteristics Data sheet Energy meter with integrated Serial Modbus interface Controls Division ALD1 Energy meters with an integrated Serial RS485 Modbus interface allow direct reading of all relevant data, such as

More information

CAMPBELL BASED MULTI-CHANNEL DATA LOGGER LITE USER MANUAL

CAMPBELL BASED MULTI-CHANNEL DATA LOGGER LITE USER MANUAL Document Title: CAMPBELL BASED MULTI-CHANNEL DATA LOGGER LITE USER MANUAL Man158a 1(A5) 03/10/2012 Final Ben Scott Stuart Burgess James Kwist Manual No. Revision Date Status Originator Checked Authorised

More information

Electrical Energy Meter with integrated Serial Modbus interface

Electrical Energy Meter with integrated Serial Modbus interface Electrical Energy Meter with integrated Serial Modbus interface EEM230-D-MO Electrical energy meter with an integrated serial RS485 Modbus interface allow direct reading of all relevant data, such as energy

More information

Technical specification

Technical specification Technical specification EXPERT i/o extension modules Version 01.00.00 23-02-2017 This manual contains technical documentation which allows for easy installation and use of the i/o extension module product

More information

Model T28 Transmitter

Model T28 Transmitter Model T28 Transmitter Product Training Presented by: Joe Bradley October 2009 ELECTRO-CHEMICAL DEVICES Model T28 Transmitter Two Wire Transmitter Loop Powered 24 VDC @ 500 Ω Measurement Choices ph ORP

More information

User's Manual. Model Heavy Duty Datalogging Module with Windows Software

User's Manual. Model Heavy Duty Datalogging Module with Windows Software User's Manual Model 380340 Heavy Duty Datalogging Module with Windows Software Stores data for later recall and analysis Can be used with any Extech Heavy Duty meter Selectable recording interval Battery

More information

Modbus Manual Version Modbus Manual for Clean Room Panel CRP5

Modbus Manual Version Modbus Manual for Clean Room Panel CRP5 Page 1 of 42 Modbus Manual Version 1.03 Modbus Manual for Clean Room Panel CRP5 This manual is for persons who will use the Clean Room Panel Modbus protocol. It describes how messages are constructed and

More information

TP32MTT.03 TP32MTT [ GB ] Probes for soil thermal profile measurement

TP32MTT.03 TP32MTT [ GB ] Probes for soil thermal profile measurement TP32MTT.03 [ GB ] Probes for soil thermal profile measurement [ GB ] [ GB ] Description Temperature measurement at 7 levels (TP32MTT.03) or 6 levels () In accordance with the requirements of the World

More information

MW100 Setting for Data Communications via Modbus Protocol. Connect to Ethernet. Enter Ethernet settings. Enter Server Settings

MW100 Setting for Data Communications via Modbus Protocol. Connect to Ethernet. Enter Ethernet settings. Enter Server Settings User s Manual Setting for Data Communications via Modbus Protocol Overview This is an explanation of the procedure for entering settings for Modbus communications with the DAQMASTER. This manual descries

More information

Turbo Technical Bulletin

Turbo Technical Bulletin Table of Contents Table of Contents... 1 Specifications... 1 SDI-12 Command Nomenclature... 1 SDI-12 Commands... 2 Setup Commands... 2 Measurement Commands... 2 Request Measurement... 2 Request Measurement

More information

The basic setup and connections for the CR1000 and GTX is referenced in the Microcom Application Note uapp222.

The basic setup and connections for the CR1000 and GTX is referenced in the Microcom Application Note uapp222. Application Note: Microcom GTX Modulator uapp225 (v1.0) July 25,2005 Setting up the CR1000 Data Logger and Microcom GTX Transmitter for TIMED DATA Transmissions Author: Richard Schwarz SUMMARY The Microcom

More information

Modbus Protocol For PMX / PXM3X

Modbus Protocol For PMX / PXM3X [ 公司地址 ] Modbus Protocol For PMX / PXM3X V3.0 Introduction This document describes the protocol detail of Modbus for PMSXX Hardware interface - The interface on the sensor is RS-485. - Hardware named D+,

More information

MultiMux Multiplexer

MultiMux Multiplexer MultiMux Multiplexer USER S GUIDE Disclaimer: The following document is provided to assist users with the installation, operation and training in the use of our products. This document and our products

More information

41126 Cognento (MODENA) Italy Via Bottego 33/A Tel: +39-(0) Internet: Fax: +39-(0)

41126 Cognento (MODENA) Italy Via Bottego 33/A Tel: +39-(0) Internet:     Fax: +39-(0) QUICK ANALYZER User Guide Version 5.3 Index 1.0 Generality... 2 LICENSE AGREEMENT... 3 2.0 Channels Configuration... 4 2.1 IdroScan Data Log Management... 6 3.0 Test Results... 9 4.0 Excel Export... 10

More information

Hydrostatic filling level sensor HFB C4 / R / MD

Hydrostatic filling level sensor HFB C4 / R / MD Hydrostatic filling level sensor HFB C4 / R / MD Pressure measuring range 0-0.5 bar Voltage supply 18 30 V DC Features Filling level detection through measuring the hydrostatic medium pressure by means

More information

Microcontroller Based 8 CHANNEL Temperature/Process DATA LOGGER (Product Code 8.7 to 8.9)

Microcontroller Based 8 CHANNEL Temperature/Process DATA LOGGER (Product Code 8.7 to 8.9) Microcontroller Based 8 CHANNEL Temperature/Process DATA LOGGER (Product Code 8.7 to 8.9) DATALOG-80 PC Software Model Wise Description: Sr. No Model Product Description (X = No. of channel ) 8.7 DATALOG

More information

VitalSensors PROFIBUS PA Instruments with Rockwell PLC and SST card. Connecting a VitalSensors PROFIBUS PA Instrument to Rockwell PLC with SST card

VitalSensors PROFIBUS PA Instruments with Rockwell PLC and SST card. Connecting a VitalSensors PROFIBUS PA Instrument to Rockwell PLC with SST card VitalSensors PROFIBUS PA Instruments with Rockwell PLC and SST card Connecting a VitalSensors PROFIBUS PA Instrument to Rockwell PLC with SST card Objective: Become familiar with the instrument wiring

More information

INSTRUCTION MANUAL. CS225 Temperature String. August Copyright Campbell Scientific (Canada) Corp.

INSTRUCTION MANUAL. CS225 Temperature String. August Copyright Campbell Scientific (Canada) Corp. INSTRUCTION MANUAL CS225 Temperature String August 2017 Copyright 2015-2017 Campbell Scientific (Canada) Corp. Assistance Products may not be returned without prior authorization. The following contact

More information

NI2400/NI816/NI4866 DATALOGGER NI2400/NI816/NI /16/24 CHANNEL ETHERNET DATA LOGGER with Embedded Web Server

NI2400/NI816/NI4866 DATALOGGER NI2400/NI816/NI /16/24 CHANNEL ETHERNET DATA LOGGER with Embedded Web Server DATALOGGER NI2400/NI816/NI4866 8/16/24 CHANNEL ETHERNET DATA LOGGER with Embedded Web Server DATASHEET Rev. 08 del 08/10/2018 Redatto da R&D Approvato da MKT GENERAL 1SPECIFICATIONS NI4866 NI816 NI2400

More information

How to Integrate Digiquartz Intelligent Products with Campbell Scientific CR1000 Series Data Loggers

How to Integrate Digiquartz Intelligent Products with Campbell Scientific CR1000 Series Data Loggers Paroscientific. nc. Precision Pressure nstrumentation Doc. No. 08044 25 March 2005 How to ntegrate Digiquartz ntelligent Products with Campbell Scientific CR1000 Series Data Loggers "The standard by which

More information

CR1000 Measurement and Control System 1/08

CR1000 Measurement and Control System 1/08 CR1000 Measurement and Control System 1/08 Copyright 2000-2008 Campbell Scientific, Inc. Warranty and Assistance The CR1000 MEASUREMENT AND CONTROL SYSTEM is warranted by CAMPBELL SCIENTIFIC, INC. to be

More information

INSTRUCTION MANUAL. AquiStar DO2. Dissolved Oxygen Smart Sensor and Datalogger

INSTRUCTION MANUAL. AquiStar DO2. Dissolved Oxygen Smart Sensor and Datalogger INSTRUCTION MANUAL AquiStar DO2 Dissolved Oxygen Smart Sensor and Datalogger Table of Contents Introduction...3 What is the AquiStar DO2 Sensor?...3 Initial Inspection and Handling...3 Do s and Don ts...3

More information

5100-iSIC Landline Ethernet Intelligent Sensor Interface for Control Operations Manual and Reference Guide Revision

5100-iSIC Landline Ethernet Intelligent Sensor Interface for Control Operations Manual and Reference Guide Revision 1415 Research Park Drive Beavercreek OH 45432 Phone: (937) 426-2703 Fax: (937) 426-1125 E-Mail: info@nexsens.com Visit us on the web at http://www.nexsens.com 5100-iSIC Landline Ethernet Intelligent Sensor

More information

;=========================>>> NOTICE <<<============================

;=========================>>> NOTICE <<<============================ ;{CR10X} ;TTS_4_0.csi ;Revised: 10/23/2002 ; ; ----======= TURBIDITY THRESHOLD SAMPLING PROGRAM (TTS) ======-------- ; Jack Lewis, Rand Eads, and Noah Campbell-Lund ; Redwood Sciences Laboratory ; USDA

More information

INSTRUCTION MANUAL. RELAY MULTIPLEXER Model : RT-MUX 16/32. Roctest Limited All rights reserved

INSTRUCTION MANUAL. RELAY MULTIPLEXER Model : RT-MUX 16/32. Roctest Limited All rights reserved INSTRUCTION MANUAL RELAY MULTIPLEXER Model : RT-MUX 16/32 Roctest Limited 2016 All rights reserved This product should be installed and operated only by qualified personnel Its misuse is potentially dangerous

More information

Integrating the MDT SMART Link-485 Sensor Application Note #32

Integrating the MDT SMART Link-485 Sensor Application Note #32 5 Gould Road, PO Box 2155 New London, NH 03257 USA Voice: (603) 526-9800 info@canarysystems.com www.canarysystems.com Integrating the MDT SMART Link-485 Sensor Application Note #32 Overview MDT s SMART

More information

Docking Stations DS-U1, DS-U2, DS-U4, DS-U4-WL and DS-U Adjustment and configuration procedure for the analog inputs

Docking Stations DS-U1, DS-U2, DS-U4, DS-U4-WL and DS-U Adjustment and configuration procedure for the analog inputs Page 1 of 17 Docking Stations DS-U1, DS-U2, DS-U4, DS-U4-WL and DS-U4-4-20 Adjustment and configuration procedure for the analog Page 2 of 17 Table of contents 1 Foreword... 3 2 Configuration examples...

More information

T80 Universal Transmitter S80 Intelligent Sensors

T80 Universal Transmitter S80 Intelligent Sensors T80 Universal Transmitter S80 Intelligent Sensors Presented by: January 2012 ELECTRO-CHEMICAL DEVICES T80 Universal Transmitter One Transmitter for Multiple Measurements ph ORP Dissolved Oxygen All Specific

More information

CR1000 Measurement and Control System Revision: 7/08

CR1000 Measurement and Control System Revision: 7/08 CR1000 Measurement and Control System Revision: 7/08 C o p y r i g h t 2 0 0 0-2 0 0 8 C a m p b e l l S c i e n t i f i c, I n c. Warranty and Assistance The CR1000 MEASUREMENT AND CONTROL SYSTEM is warranted

More information

IOTRON TM ph / ORP / ISE / DO / Conductivity Measurement Products Lines INSTALLATION GUIDE

IOTRON TM ph / ORP / ISE / DO / Conductivity Measurement Products Lines INSTALLATION GUIDE Installation and User Guide ASTI Datalogging & Graphing Windows Software Version 2.5 for 3TX ph, ISE, TOT, DO & Conductivity Transmitters with MODBUS Output INSTALLATION GUIDE Welcome to the ASTI 3TX MODbus

More information

FT2 View Instruction Manual

FT2 View Instruction Manual 399 Reservation Road, Marina, California U.S.A. Ph: (831) 384-4300 Fax: (831) 337-5786 www.foxthermalinstruments.com 2006 Fox Thermal Instruments, Inc. 07/19/13 Introduction: The FT2 View application software

More information

Pen Drive USB Datalogger!

Pen Drive USB Datalogger! SINGLE PHASE POWER METER Isolated V/I converter -RS485 Modbus - Datalogger Single-phase power meter RMS, and Voltage/Current Isolated. Signal Converter 1000 VDC / 600 VAC, 10 A AC/DC, Variable frequency

More information

DIGITAL PRESSURE SENSOR SCANNER CUM DATALOGGER

DIGITAL PRESSURE SENSOR SCANNER CUM DATALOGGER DIGITAL PRESSURE SENSOR SCANNER CUM DATALOGGER MODEL : NICTECH-DAQ-PRESSURE-16X-USB (FRONT & REAR VIEW WITH CONNECTORS FOR STRAIN GAUGE INPUT) FEATURES Internal scanner provides 8 measuring channels as

More information

MULTI PARAMETER WATER QUALITY SENSORS

MULTI PARAMETER WATER QUALITY SENSORS MULTI PARAMETER WATER QUALITY SENSORS IRRIGATION AUTOMATION WATER MEASUREMENT REMOTE MONITORING CLOUD BASED DATA PENTAIR ENVIRONMENTAL SYSTEMS 47.0 MP47 (UP TO 4 PARAMETERS) MP65 (UP TO 6 PARAMETERS) MULTI

More information

EE360. High-End Moisture in Oil Transmitter. Typical applications. Features EE360 EE360. (+34)

EE360. High-End Moisture in Oil Transmitter. Typical applications. Features EE360 EE360. (+34) is dedicated for reliable monitoring of lubrication, hydraulic and insulation oils as well as diesel fuel. In addition to highly accurate measurement of water activity (a w ) and temperature (T), calculates

More information

INSTRUCTION MANUAL. AquiStar Turbo. Turbidity/Temperature Smart Sensor and Datalogger

INSTRUCTION MANUAL. AquiStar Turbo. Turbidity/Temperature Smart Sensor and Datalogger INSTRUCTION MANUAL AquiStar Turbo Turbidity/Temperature Smart Sensor and Datalogger Table of Contents 1 Introduction... 3 What is the AquiStar Turbo Sensor?... 3 Initial Inspection and Handling... 3 Do

More information

DATA ACQUISITION Hints and Tips

DATA ACQUISITION Hints and Tips How to use the SquirrelView software with the SQ2010/SQ2020/SQ2040 Data Loggers. SquirrelView Help Page 2 Connecting Your Squirrel Data Logger Page 2 Logger Set-up Page 3 Download Data Page 8 Export Data

More information

GEN II Wireless GSM/GPRS Data Acquisition System

GEN II Wireless GSM/GPRS Data Acquisition System Real time and historic data is sent via GPRS to the main server where it is written to a MySQL database Server MySQL Database SMS alarm messages sent to mobile phones Email alerts and reports sent to specified

More information

ioselect Z-NET Z-SG Bridge Input Isolating I/O Module

ioselect Z-NET Z-SG Bridge Input Isolating I/O Module -wire Bridge Connection Excitation for to 30 Ω Load Cells 00 Volt (3-way) Isolation Excellent Accuracy (0.0%) DIP Switch Configuration Digital Input Tare Calibration RS8 Modbus RTU Superior Flexible Power:

More information

SC115 CS I/O 2G Flash Memory Drive with USB Interface Revision: 3/12

SC115 CS I/O 2G Flash Memory Drive with USB Interface Revision: 3/12 SC115 CS I/O 2G Flash Memory Drive with USB Interface Revision: 3/12 Copyright 2010-2012 Campbell Scientific, Inc. Warranty PRODUCTS MANUFACTURED BY CAMPBELL SCIENTIFIC, INC. are warranted by Campbell

More information

HARDENED ROOM SENSOR USER MANUAL SAD120 CPO55 E 1

HARDENED ROOM SENSOR USER MANUAL SAD120 CPO55 E 1 HARDENED ROOM SENSOR USER MANUAL SAD120 CPO55 LOREME 12, rue des Potiers d'etain Actipole BORNY - B.P. 35014-57071 METZ CEDEX 3 Phone 03.87.76.32.51 Contact : Commercial@Loreme.fr - Technique@Loreme.fr

More information

Range. Body Material. Max. Press ms K=0, C 4 bar Glass Graphite 13.5 PG Full integrated 5-meter cable

Range. Body Material. Max. Press ms K=0, C 4 bar Glass Graphite 13.5 PG Full integrated 5-meter cable Conductivity Range Conductivity 0 20 μs; 0 200 μs; 0 2.000 μs; 0 20.000 μs; 0 200.000 μs Resolution 0,01 μs; 0,1 μs; 1 μs; μs Avaiable versions with double parameter 4238-22 [ph/orp - Conductivity] 4293-22

More information

Smart Energy & Power Quality Solutions. ProData data logger. Data collection and recording

Smart Energy & Power Quality Solutions. ProData data logger. Data collection and recording Smart Energy & Power Quality Solutions ProData data logger Data collection and recording ProData ProData data logger Data collection and recording ProData data loggers are used for the collection of any

More information

C30xx Digital communication

C30xx Digital communication C30xx Digital communication Table of contents 1 Introduction...3 2 Digital ports...3 3 Command protocol to send...3 4 Command protocol to receive...4 5 Command table...5 6 Command specifications + examples...6

More information

WE CONNECT REAL WORLD STRUCTURAL MONITORING SMART SENSORS SOFTWARE CLOUD WIRELESS INTERFACE TO THE

WE CONNECT REAL WORLD STRUCTURAL MONITORING SMART SENSORS SOFTWARE CLOUD WIRELESS INTERFACE TO THE WE CONNECT REAL WORLD TO THE STRUCTURAL MONITORING SENSORS WIRELESS INTERFACE SOFTWARE CLOUD Rev.10 del 3/10/017 Redatto da: R&D e MKT Approvato da: CEO Smart structural WIRELESS Interface NI00 devices

More information

MODBUS RTU MC608 CMD03+CMD16

MODBUS RTU MC608 CMD03+CMD16 MODBUS RTU MC608 CMD03+CMD16 CMD03 Read Holding Register MODBUS REGISTER MODBUS ADDRESS num. bytes MODBUS REGISTER COMMAND 03 Access Data Type description DATA TYPE (Read/Write) CMD16 (*) 4:1002 1001 2

More information

UniPak UP448 Bridge Input Isolating Signal Conditioner

UniPak UP448 Bridge Input Isolating Signal Conditioner 6-wire Bridge Connection Excitation for to 350 Ω Load Cells 500 Volt (3-way) Isolation Excellent Accuracy (0.0%) DIP Switch Configuration Digital Input Tare Calibration RS85 Modbus RTU Superior Flexible

More information

URG Series. Communication Protocol Specification

URG Series. Communication Protocol Specification DATE: FEB.2 nd 2004 URG Series Communication Protocol Specification SYMBOL CORRECTIONS PAGES DATE CORRECTED BY NO APPROVED BY CHECKED BY DRAWN BY DESIGNED BY C-42-3320-A 1/8 2D Sensor Communication Protocol

More information

MULTI PARAMETER WATER QUALITY SENSORS PENTAIR ENVIRONMENTAL SYSTEMS

MULTI PARAMETER WATER QUALITY SENSORS PENTAIR ENVIRONMENTAL SYSTEMS MULTI PARAMETER WATER QUALITY SENSORS PENTAIR ENVIRONMENTAL SYSTEMS 47.0 MP47 (UP TO 4 PARAMETERS) MP65 (UP TO 6 PARAMETERS) MULTI PARAMETER WATER QUALITY SENSORS DESCRIPTION The Greenspan MP47 and MP65

More information

Deutschmann Module Unigate. CL-Profibus DP. Modbus - Profibus DP Programmer s Manual

Deutschmann Module Unigate. CL-Profibus DP. Modbus - Profibus DP Programmer s Manual Deutschmann Module Unigate CL-Profibus DP Modbus - Profibus DP Programmer s Manual Profibus General Information To use the Deutschmann Unigate CL Module, the script must be programmed on the module. Additionally,

More information

INSTRUCTION MANUAL. AquiStar PT2X-BV. Barometric/Vacuum Sensor and Datalogger

INSTRUCTION MANUAL. AquiStar PT2X-BV. Barometric/Vacuum Sensor and Datalogger INSTRUCTION MANUAL AquiStar PT2X-BV Barometric/Vacuum Sensor and Datalogger Table of Contents 1 Introduction... 3 What is the PT2X-BV?... 3 Initial Inspection and Handling... 3 Do s and Don ts... 3 Installation...

More information

User Module. Modbus TCP2RTU. Application note

User Module. Modbus TCP2RTU. Application note User Module Modbus TCP2RTU Application note Used symbols Danger important notice, which may have an influence on the user s safety or the function of the device. Attention notice on possible problems,

More information

Precision Digital Modbus Register Tables Serial Communication

Precision Digital Modbus Register Tables Serial Communication This document describes how to communicate with the Trident Model PD765 and Javelin D Model PD644 meters using the Modbus RTU Serial Communication Protocol. The user should be familiar with Modbus serial

More information

HD HD [ GB ] Probes for soil volumetric water content measurement. Temperature. Humidity PART OF G H M GROUP TELEMETRIE & AUTOMATION

HD HD [ GB ] Probes for soil volumetric water content measurement. Temperature. Humidity PART OF G H M GROUP TELEMETRIE & AUTOMATION HD3910.1 HD3910.2 [ GB ] Probes for soil volumetric water content measurement Temperature Humidity PART OF G H M GROUP TELEMETRIE & AUTOMATION [ GB ] Characteristics [ GB ] Measurement of the soil volumetric

More information

Power Monitor / Power Monitor 51A. Quick guide to set up a connection with the Power Monitor devices through the Weidmüller Serial/Ethernet Converter

Power Monitor / Power Monitor 51A. Quick guide to set up a connection with the Power Monitor devices through the Weidmüller Serial/Ethernet Converter Power Monitor / Power Monitor 51A Quick guide to set up a connection with the Power Monitor devices through the Weidmüller Serial/Ethernet Converter 1.1 Revision history Version Date Change 0.0 11/2013

More information

INSTRUCTION MANUAL. PakBus Networking Guide for the CR10X, CR510, CR23X, and CR200 Series and LoggerNet 2.1C. Revision: 3/05

INSTRUCTION MANUAL. PakBus Networking Guide for the CR10X, CR510, CR23X, and CR200 Series and LoggerNet 2.1C. Revision: 3/05 INSTRUCTION MANUAL PakBus Networking Guide for the CR10X, CR510, CR23X, and CR200 Series and LoggerNet 2.1C Revision: 3/05 Copyright (c) 2004-2005 Campbell Scientific, Inc. PakBus Networking Table of

More information

Quick Start Guide. Data Logger TrueLog100

Quick Start Guide. Data Logger TrueLog100 Quick Start Guide Data Logger TrueLog100 Antenna Port 3 Port 4 1 1 1 1 Port 1 1 Port 2 RSSI PC Measure SIM + Battery + Solar Power Supply Figure 1: Top view of the data logger TrueLog100. All ports and

More information

List of Contents 1. INTRODUCTION DEFINITIONS AND ABBREVIATIONS REFERENCES TECHNICAL DATA GENERAL MODBUS RTU...

List of Contents 1. INTRODUCTION DEFINITIONS AND ABBREVIATIONS REFERENCES TECHNICAL DATA GENERAL MODBUS RTU... MAGX2 RTU User Guide -0- V1.5 23-01-2018 List of Contents 1. INTRODUCTION... 2 1.1 DEFINITIONS AND ABBREVIATIONS... 2 1.2 REFERENCES... 2 2. TECHNICAL DATA... 3 2.1 GENERAL MODBUS RTU... 4 3. COMMISSIONING...

More information

Global Water globalw.com. For Use With WQ-FDO Sensor and GL Data Logger. Global Water. Instrumentation, Inc.

Global Water globalw.com. For Use With WQ-FDO Sensor and GL Data Logger. Global Water. Instrumentation, Inc. Global DO Monitor Software Manual For Use With WQ-FDO Sensor and GL500-7-2 Data Logger Global Water Instrumentation, Inc. 151 Graham Road P.O. Box 9010 College Station, TX 77842-9010 T: 800-876-1172 Int

More information

USER GUIDE PEL 8K / PEL 8K-M

USER GUIDE PEL 8K / PEL 8K-M V2.0.0 (24.10.2014) 1 (7) COMMISSIONING Mounting - The transmitter should be installed above the measuring point to avoid condensation problems. - The duct overpressure is detected by connecting the measuring

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

Dew point. Dew point set DS 400. Special features: Dew point set DS 400. Technical data DS 400. Technical data FA 410

Dew point. Dew point set DS 400. Special features: Dew point set DS 400. Technical data DS 400. Technical data FA 410 Dew point set DS 400 for stationary dew point monitoring of refrigeration or adsorption dryers. The touch screen graphic display enables an intuitive operation and shows the progress of the measured values.

More information

TORRIX RS485. Technical Documentation. with MODBUS Protocol. Edition: Version: 2 Art. no.:

TORRIX RS485. Technical Documentation. with MODBUS Protocol. Edition: Version: 2 Art. no.: Technical Documentation TORRIX RS485 with MODBUS Protocol Edition: 2016-05 Version: 2 Art. no.: 350187 FAFNIR GmbH Schnackenburgallee 149 c 22525 Hamburg Tel.: +49 / 40 / 39 82 07 0 Fax: +49 / 40 / 390

More information

Modbus Manual Version Modbus Manual for PF4/5

Modbus Manual Version Modbus Manual for PF4/5 Modbus Manual Version 1.1 - Modbus Manual for PF4/5 Seite 2 1. Table of contents 1 Modbus protocol... 3 1.1. Structure of the Modbus protocol... 3 1.1.1 Modbus RTU / TCP... 3 1.2 Modbus Data Format...

More information

Integrating the Yieldpoint d-exto MPBX

Integrating the Yieldpoint d-exto MPBX 5 Gould Road, PO Box 2155 New London, NH 03257 USA Voice: (603) 526-9800 info@canarysystems.com www.canarysystems.com Integrating the Yieldpoint d-exto MPBX Sensor Application Note #27 Revision 06/08/2017

More information

AEGIS_Modbus. Ethernet TCP. 2. Address Contents 2.1 Current Values of Sensors, Meters, Contact Sets

AEGIS_Modbus. Ethernet TCP. 2. Address Contents 2.1 Current Values of Sensors, Meters, Contact Sets AEGIS_Modbus Ethernet TCP CONTENTS 1. Overview 2. Address Contents 2.1 Current Values of Sensors, Meters, Contact Sets 2.2 Current Values of ON/OFF Relays and Frequency Control Outputs 2.3 Current State

More information

VAT series controller and transmitter. Manual

VAT series controller and transmitter. Manual VAT series controller and transmitter Manual 1. General describe.. 2. Notice for use.. 1 1 3. Panel & connection introduce.. 2 4. Operate introduce.. 5. Application introduce. 6. Communication. 7. Specification..

More information

CONFIGURATION HANDBOOK

CONFIGURATION HANDBOOK MINIATURE DIGITAL INDICATOR / CHASSIS THERMOSTAT CONFIGURATION HANDBOOK 94000 94000L LOREME 12, rue des Potiers d'etain Actipole BORNY - B.P. 35014-57071 METZ CEDEX 3 Phone 03.87.76.32.51 Contact : Commercial@Loreme.fr

More information

5S3, MIR & MEC OEM OEM Communications Protocol Manual

5S3, MIR & MEC OEM OEM Communications Protocol Manual OEM Communications Protocol Manual Analox Limited 15 Ellerbeck Court, Stokesley Business Park, Nort orksire, TS9 5PT, UK UK/RoW T: +44 (0)1642 711400 F: +44 (0)1642 713900 US T: (714) 891-4478 W: www.analox.net

More information