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

Size: px
Start display at page:

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

Transcription

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 are indicated in italic. Bold face type indicates CRBasic commands Line numbers in italic, underlined and highlighted in yellow and correspond to discussion of this program in the Agriculture Water Management manuscript entitled: Suspension Lysimeter Systems for Quantifying Water Use and Modulating Water Stress for Crops Grown in Organic Substrates 'CR1000 Series Datalogger 'date: 'program author: RC Beeson Const off = 0 Const on = -1 Const run = 1 'Declare Public Variables Public batt_volt, lys_mass(16), mass_500(16), mass_2200(16), CD16cntl(16), mass(16), Corr_dailyETa(16) Public Total_ETa(16), Post1pm_massinc(16), Totalirr(16), ETA_1pm(16), preirr_mass(16), cumirrmass(16) Public Partirrvol(16), middaydelay As Long, irrneeded(2), irr_on(2), StoredETa(16), Trigger(16), CF(16) Public lcmult(16), lcoffset(16), switch(7)as Boolean, Flag(12)As Boolean, 'Declare Other Variables Dim PEta2400(16), lysloopcount, i As Long Dim cd16status(2),lcnum(16), 'Act as logic switches Alias switch(1) = readlysimeters Alias switch(2) = irrindicator Alias switch(3) = shutdownswitch Alias switch(4) = startupswitch Alias switch(5)= midday_signal Alias switch(6) = endirrcyc Alias switch(7) = irrbypass 'Define Data Tables ' Stores lysimeter masses every half hr DataTable (halfstor,true,-1) DataInterval (0,30,Min,-1) Sample (16,lys_mass(),IEEE4) EndTable

2 'Calculates mean load cell millivolts DataTable (meanmass,flag(3),3) Average (16, mass(),ieee4,0) EndTable 'Stores daily values DataTable (dailysum,flag(7),400) Sample (16,Total_ETa(),IEEE4) Sample (16,mass_500(),IEEE4) Sample (16,Post1pm_massinc(),IEEE4) EndTable 'Irrigation shutdown subroutine Sub irrshutdown cumirrmass(i)= lys_mass(i) - preirr_mass(i) If cumirrmass(i) < 0 Then cumirrmass(i) = 0 If cd16cntl(i) = run AND partirrvol(i) >= cumirrmass(i) Then cd16cntl(i) = run Else cd16cntl(i) = off MaxSpa (irr_on,16,cd16cntl(1)) 'Override setting to prevent irrigation events longer than 15 min. 'Should be changed if "Overirrigate" is on and irrigation is working well If TimeIntoInterval (15,30,Min) Then If irr_on(1) = run Then flag(4) = true If shutdownswitch = on Then cd16cntl(i) = off flag(12) = true 'Resets variables for next irrigation If irr_on = 0 Then

3 EndSub shutdownswitch = off startupswitch = false irrindicator = off irrbypass = off If midday_signal = on Then endirrcyc = on 'Irrigation startup subroutine Sub irr_start If partirrvol(i) >= 0.2 Then cd16cntl(i) = run Else cd16cntl(i) = off startupswitch=off irrindicator = on irrneeded = off irrbypass = on flag(2) = true EndSub 'Main Program BeginProg 'Calibration constants for load cells. Where mult = slope and offset is constant value 'NOTE: calibration must be in kg, not grams!!! lcmult(1)=1 : lcoffset(1)=0 lcmult(2)=1 : lcoffset(2)=0 lcmult(3)=1 : lcoffset(3)=0 lcmult(4)=1 : lcoffset(4)=0 lcmult(5)=1 : lcoffset(5)=0 lcmult(6)=1 : lcoffset(6)=0 lcmult(7)=1 : lcoffset(7)=0 lcmult(8)=1 : lcoffset(8)=0 lcmult(9)=1 : lcoffset(9)=0 lcmult(10)=1 : lcoffset(10)=0 lcmult(11)=1 : lcoffset(11)=0 lcmult(12)=1 : lcoffset(12)=0 lcmult(13)=1 : lcoffset(13)=0 lcmult(14)=1 : lcoffset(14)=0 lcmult(15)=1 : lcoffset(15)=0 lcmult(16)=1 : lcoffset(16)=0

4 Scan (10,Sec,0,0) Battery (batt_volt) 'Allow for bypassing program, such as when tinkering with it or when changing load cells, etc ' and you don't want non-useful data. Flag 1 has to be "on" (lit) for program to run. If flag(1) = true Then ' When Flag 2 is on, bypasses normal 5 cycle to get average 'good for recalibration or to check things. Needed for irrigation control. If flag(2) = true Then readlysimeters = on lysloopcount=4 'measures load cells attached to AM in Dff channel 1 and Excite channel 1, returns mass 'LINE 130 If readlysimeters = on Then lysloopcount = lysloopcount + 1 PortSet (4,1 ) SubScan(50,msec,16) PulsePort(5,20000) lcnum = lcnum +1 BrFull (mass(lcnum),1,mv7_5,-1,vx1,1,2500,false,true,20000,_60hz,lcmult(lcnum),lcoffset(lcnum)) NextSubScan CallTable meanmass PortSet(4, 0) lcnum = 0 'LINE 141 'When lysloopcount = 5, by either instance measure or 5 rep mean, shuts down load cell reading and calls for mean mass of each lysimeter. 'LINE 145 If lysloopcount = 5 Then flag(3) = true CallTable meanmass 'LINE 148 'Retrives average mass per lysimeter from meanmass table and puts it in array lys_mass(). 'LINE 151 If flag(3) = true Then GetRecord(lys_mass(), meanmass,1) 'LINE153 'After average mass retrieved, resets conditions to initial values for next lysimeter read.

5 If flag(3)= true AND lysloopcount = 5 Then flag(3) = false lysloopcount = 0 readlysimeters = off If irrbypass = off Then flag(2) = false 'Reads lysimeter every half hour and stores data in table named halfstor 'LINE 165 If TimeIntoInterval (29,30,Min) Then readlysimeters = on 'LINE 167 'LINE 169 If TimeIntoInterval (0,30,min) Then CallTable halfstor 'LINE 171 'Stores 5 am masses for ETa and irrigation volume determinations 'LINE 174 If TimeIntoInterval (300,1440,Min) Then For i=1 To 16 Step 1 mass_500(i)=lys_mass(i) 'LINE 178 'Stores 10 pm mass for irrigation volume and ETa determination 'LINE 181 If TimeIntoInterval (1320,1440,Min) Then For i=1 To 16 Step 1 mass_2200(i) = lys_mass(i) 'LINE 185 'At midnight, calculates cumulative daily ETA and setup irrigation for rest of night 'LINE 188 If TimeIntoInterval (0, 1440, min) Then flag(7) = true If Flag(7) = true Then For i= 1 To 16 Step 1 PEta2400(i) = mass_500(i) - mass_2200(i) If PEta2400(i)< 0 Then PEta2400(i) = 0

6 Total_ETa(i) = PEta2400(i) + Post1pm_massinc(i) 'LINE 197 'LINE 199 Corr_dailyETa(i) = Total_ETa(i) * CF(i) StoredETa(i) = StoredETa(i) + Corr_dailyETa(i) If StoredETa(i) > Trigger(i) Then 'LINE 20 Else 'LINE 202 Totalirr(i) = StoredETa(i) StoredETa(i) = 0 Totalirr(i) = 0 'LINE 211 partirrvol(i) = Totalirr(i)* 'Sets limit for 1/3 irrigation volume to 10 kg, if reached or exceeded, Underirrigation flag lites up 'LINE 216 If partirrvol(i) >= 10 Then partirrvol(i) = 10 flag(5) = true 'LINE 221 MaxSpa (Irrneeded,16,partirrvol(1)) CallTable Dailysum 'LINE 216 'Setup for initial mass for nighttime irrigation 'LINE 226 preirr_mass(i) = lys_mass(i) flag(7)= false flag(9) = true 'Sets up for 1 am irrigation If TimeIntoInterval (60,1440,Min) Then For i= 1 To 16 Step 1 preirr_mass(i) = lys_mass(i)

7 MaxSpa (irrneeded,16,partirrvol(1)) 'Sets up for 2 am irrigation If TimeIntoInterval (120,1440,Min) Then preirr_mass(i) = lys_mass(i) MaxSpa (irrneeded,16,partirrvol(1)) 'LINE 245 'Sets up for midday irrigation. 'To stop midday irrigation, change flag(8) = true to flag(8) = false 'LINE 249 If TimeIntoInterval (781,1440,Min) Then flag(8) = true If flag(8) = true Then preirr_mass(i) = lys_mass(i) ETA_1pm(i) = mass_500(i) - preirr_mass(i) 'Puts on 1/2 of ETA at midday. Can be reduced for slow drydown partirrvol(i) = ETA_1pm(i)* 0.5 'Limits midday irrigation to 6 kg. You may need to increase if trees are big If partirrvol(i) > 6 Then partirrvol(i) = 6 flag(5) = true MaxSpa (irrneeded,16,partirrvol(1)) midday_signal = on flag(8)= false flag(10) = true 'LINE 270 'Irrigation shutdown cycle 'LINE 272 MaxSpa (cd16status(),16,cd16cntl(1)) If cd16status(1)=run Then shutdownswitch = on

8 If irrindicator = on AND shutdownswitch = on Then Call irrshutdown 'LINE 279 Irrigation startup cycle 'LINE 281 If irrneeded(1)> 0.2 Then startupswitch = on If startupswitch = on Then Call Irr_start Flag(11) = true 'LINE 288 'solenoid control SDMCD16AC (CD16cntl(),1,0) cd16status(1) = off 'Post-1 pm irrigation mass increase and cleanup If midday_signal = on AND endirrcyc = on Then middaydelay = middaydelay +1 If middaydelay = 11 Then readlysimeters = on NextScan EndProg If middaydelay = 17 Then Post1pm_massinc(i) = lys_mass(i) - preirr_mass(i) midday_signal = off endirrcyc = off middaydelay = 0 irrbypass = off midday_signal = off

'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

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

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

SDM-CD16S 16 Channel Solid State DC Control Module 1/08

SDM-CD16S 16 Channel Solid State DC Control Module 1/08 SDM-CD16S 16 Channel Solid State DC Control Module 1/08 Copyright 2000-2008 Campbell Scientific, Inc. Warranty and Assistance The SDM-CD16S 16 CHANNEL SOLID STATE DC CONTROL MODULE is warranted by CAMPBELL

More information

Reading Aquistar Smart Sensors with Campbell Loggers

Reading Aquistar Smart Sensors with Campbell Loggers 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

More information

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

SDM-CD8S 8 Channel Solid State DC Control Module Revision: 4/12

SDM-CD8S 8 Channel Solid State DC Control Module Revision: 4/12 SDM-CD8S 8 Channel Solid State DC Control Module Revision: 4/12 Copyright 2009-2012 Campbell Scientific, Inc. PLEASE READ FIRST About this manual Please note that this manual was originally produced by

More information

INSTRUCTION MANUAL. SC115 CS I/O 2G Flash Memory Drive with USB Interface Revision: 10/16. Copyright Campbell Scientific, Inc.

INSTRUCTION MANUAL. SC115 CS I/O 2G Flash Memory Drive with USB Interface Revision: 10/16. Copyright Campbell Scientific, Inc. INSTRUCTION MANUAL SC115 CS I/O 2G Flash Memory Drive with USB Interface Revision: 10/16 Copyright 2010-2016 Campbell Scientific, Inc. Assistance Products may not be returned without prior authorization.

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

SDM-CD8S 8 Channel Solid State DC Control Module

SDM-CD8S 8 Channel Solid State DC Control Module SDM-CD8S 8 Channel Solid State DC Control Module User Manual Issued 11.6.12 Copyright 2009-2012 Campbell Scientific Inc. Printed under licence by Campbell Scientific Ltd. CSL 800 Guarantee This equipment

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

INSTRUCTION MANUAL L Sampler Control Cable for use with Isco and Sigma Autosamplers Revision: 3/14

INSTRUCTION MANUAL L Sampler Control Cable for use with Isco and Sigma Autosamplers Revision: 3/14 INSTRUCTION MANUAL 10164-L Sampler Control Cable for use with Isco and Sigma Autosamplers Revision: 3/14 Copyright 1998-2014 Campbell Scientific, Inc. Limited Warranty Products manufactured by CSI are

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

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

INSTRUCTION MANUAL. COM320 Voice Phone Modem Revision: 6/16. Copyright Campbell Scientific, Inc.

INSTRUCTION MANUAL. COM320 Voice Phone Modem Revision: 6/16. Copyright Campbell Scientific, Inc. INSTRUCTION MANUAL COM320 Voice Phone Modem Revision: 6/16 Copyright 2002-2016 Campbell Scientific, Inc. Limited Warranty Products manufactured by CSI are warranted by CSI to be free from defects in materials

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

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

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

MiniMux Multiplexer USER S GUIDE

MiniMux Multiplexer USER S GUIDE MiniMux 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

INSTRUCTION MANUAL. CS230 Temperature Profiler Revision: 4/17. Copyright Campbell Scientific, Inc.

INSTRUCTION MANUAL. CS230 Temperature Profiler Revision: 4/17. Copyright Campbell Scientific, Inc. INSTRUCTION MANUAL Revision: 4/17 Copyright 2016-2017 Campbell Scientific, Inc. Assistance Products may not be returned without prior authorization. The following contact information is for Canadian

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

INSTRUCTION MANUAL. NL116 Ethernet and CompactFlash Module Revision: 4/18. Copyright Campbell Scientific, Inc.

INSTRUCTION MANUAL. NL116 Ethernet and CompactFlash Module Revision: 4/18. Copyright Campbell Scientific, Inc. INSTRUCTION MANUAL NL116 Ethernet and CompactFlash Module Revision: 4/18 Copyright 2006-2018 Campbell Scientific, Inc. Limited Warranty Products manufactured by CSI are warranted by CSI to be free from

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

Time Saving Programming. John Markham, Janet Albers

Time Saving Programming. John Markham, Janet Albers Time Saving Programming John Markham, Janet Albers Short Cut Short Cut Basic Measure and Store Programs Sensor Connections Setting up DataTables Cards and the SC115 are supported Wiring Diagrams copy

More information

Gill Instruments WindSonic Two Dimensional Sonic Anemometer Revision: 3/07

Gill Instruments WindSonic Two Dimensional Sonic Anemometer Revision: 3/07 Gill Instruments WindSonic Two Dimensional Sonic Anemometer Revision: 3/07 Copyright 2004-2007 Campbell Scientific, Inc. Warranty and Assistance The GILL INSTRUMENTS WINDSONIC TWO DIMENSIONAL SONIC ANEMOMETER

More information

INSTRUCTION MANUAL. NL115 Ethernet and CompactFlash Module Revision: 6/16. Copyright Campbell Scientific, Inc.

INSTRUCTION MANUAL. NL115 Ethernet and CompactFlash Module Revision: 6/16. Copyright Campbell Scientific, Inc. INSTRUCTION MANUAL NL115 Ethernet and CompactFlash Module Revision: 6/16 Copyright 2006-2016 Campbell Scientific, Inc. Limited Warranty Products manufactured by CSI are warranted by CSI to be free from

More information

CFM100 Compact Flash Module Revision: 10/07

CFM100 Compact Flash Module Revision: 10/07 CFM100 Compact Flash Module Revision: 10/07 Copyright 2000-2007 Campbell Scientific, Inc. Warranty and Assistance The CFM100 COMPACT FLASH MODULE is warranted by CAMPBELL SCIENTIFIC, INC. to be free from

More information

DUAL OUTLET CO2002 DIGITAL TAP TIMER INSTRUCTION MANUAL. CO2002 Dual Outlet Digital Tap Timer Instructions.indd 1

DUAL OUTLET CO2002 DIGITAL TAP TIMER INSTRUCTION MANUAL. CO2002 Dual Outlet Digital Tap Timer Instructions.indd 1 DUAL OUTLET DIGITAL TAP TIMER CO2002 INSTRUCTION MANUAL CO2002 Dual Outlet Digital Tap Timer Instructions.indd 1 Table of Contents General Information Display Glossary Operation: AUTO Mode WATERING Mode

More information

HMP155A Temperature and Relative Humidity Probe. Issued:

HMP155A Temperature and Relative Humidity Probe. Issued: USER GUIDE HMP155A Temperature and Relative Humidity Probe Issued: 18.8.15 Copyright 1990-2015 Campbell Scientific, Inc. Printed under Licence by Campbell Scientific Ltd. CSL 868 Guarantee This equipment

More information

INSTRUCTION MANUAL. NL115 Ethernet and CompactFlash Module Revision: 2/14. Copyright Campbell Scientific, Inc.

INSTRUCTION MANUAL. NL115 Ethernet and CompactFlash Module Revision: 2/14. Copyright Campbell Scientific, Inc. INSTRUCTION MANUAL NL115 Ethernet and CompactFlash Module Revision: 2/14 Copyright 2006-2014 Campbell Scientific, Inc. Warranty PRODUCTS MANUFACTURED BY CAMPBELL SCIENTIFIC, INC. are warranted by Campbell

More information

Quick Reference Guide for Daily use of Yield-Pro Planter

Quick Reference Guide for Daily use of Yield-Pro Planter Quick Reference Guide for Daily use of Yield-Pro Planter Caution Please Read!! Note: This guide is intended for quick reference only. For complete set-up see owners manual, quick start guides and or your

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

Wireless Irrigation Control System

Wireless Irrigation Control System Wireless Irrigation Control System General introduction: Automated irrigation becomes a trend with the development of smart agriculture. In order to send appropriate amount water in proper time to your

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

Instruction Manual HID-2

Instruction Manual HID-2 Specifications HID-2 Amps / Volts requirements 15 amps @ 120 volts Min / Max operating temperature 32 to 120 F Min / Max operating humidity 0-99% RH Time setting Hours, Minutes, Seconds Hi-temp setting

More information

INSTRUCTION MANUAL. SR50A, SR50A-316SS, and SR50AH Sonic Ranging Sensors Revision: 10/16. Copyright Campbell Scientific, Inc.

INSTRUCTION MANUAL. SR50A, SR50A-316SS, and SR50AH Sonic Ranging Sensors Revision: 10/16. Copyright Campbell Scientific, Inc. INSTRUCTION MANUAL SR50A, SR50A-316SS, and SR50AH Sonic Ranging Sensors Revision: 10/16 Copyright 2007-2016 Campbell Scientific, Inc. Limited Warranty Products manufactured by CSI are warranted by CSI

More information

BIC 100 BERMAD Irrigation Control System

BIC 100 BERMAD Irrigation Control System BIC 100 BERMAD Irrigation Control System BIC 100 PROGRAMA 1234567 1 2 1 2 13:47 H:M MV M Operation Manual BERMAD Water Control Solutions Contents Page 1. General Description 03 2. Normal Mode Defining

More information

INSTRUCTION MANUAL. 9522B Iridium Satellite Modem & COM9522B Interface Modem. August Copyright Campbell Scientific (Canada) Corp.

INSTRUCTION MANUAL. 9522B Iridium Satellite Modem & COM9522B Interface Modem. August Copyright Campbell Scientific (Canada) Corp. INSTRUCTION MANUAL 9522B Iridium Satellite Modem & COM9522B Interface Modem August 2017 Copyright 2009-2017 Campbell Scientific (Canada) Corp. Table of Contents 1. Overview... 3 1.1. General Description

More information

INSTALLATION PROGRAMMING MANUAL

INSTALLATION PROGRAMMING MANUAL INSTALLATION PROGRAMMING MANUAL PURONICS WATER CONDITIONER Model Terminator MP With SilverShield HYgene Bacteriostatic Protection Manufactured by: Puronics Water Systems, Inc. 5775 Las Positas Road Livermore,

More information

Mini Agg 1-10 (DC/AC)

Mini Agg 1-10 (DC/AC) TALGIL Computing & Control Ltd. ISRAEL TALGIL COMPUTING & CONTROL LTD. NAAMAN CENTER, HAIFA - ACCO ROAD 7000 P.O.BOX 775 KIRYAT MOTZKIN 26119, ISRAEL TEL: 972-4-8775947; 972-4-8775948 FAX: 972-4-8775949

More information

Portable Flux Observation System User Manual

Portable Flux Observation System User Manual ISBN 978-4-902606-82-9 Portable Flux Observation System User Manual Forestry and Forest Products Research Institute Flux Observation Network Edition 森林総合研究所第 2 期中期計画成果 26( 温暖化対策 -3) Contents 1. Overview...

More information

ECHO. User s Manual. Dielectric Aquameter. For Models EC-20 and EC-10. Version 1.4. Decagon Devices, Inc.

ECHO. User s Manual. Dielectric Aquameter. For Models EC-20 and EC-10. Version 1.4. Decagon Devices, Inc. ECHO Dielectric Aquameter User s Manual For Models EC-0 and EC-10 Version 1.4 Decagon Devices, Inc. 00 Decagon Devices, Inc. All rights reserved. Decagon Devices, Inc. 950 NE Nelson Court P.O. Box 835

More information

TDC+ CONTROLLER. Programming Guide

TDC+ CONTROLLER. Programming Guide TDC+ CONTROLLER Programming Guide TABLE OF CONTENTS CHAPTER 1: BASIC CONTROLLER PROGRAMMING... 4 I. CONTROLLER SETUP... 4 UTILITY Time & Day Edit Mode... 4 UTILITY Day Change Hour Edit Mode... 6 UTILITY

More information

Programming the R34 MFD

Programming the R34 MFD Programming the R34 MFD Author Ned (with web help from anyone whosepictures or wordsi stole) The MFD Shift light 4way joystick (lit at night) DISP R E T U R N ME NU MODE DISP Display button, takes you

More information

ABSTRACT BACKGROUND PSIG 05B3

ABSTRACT BACKGROUND PSIG 05B3 PSIG 05B3 Simulating pipeline control systems for operator training David Basnett, Atmos International Ltd, John Lewis, Atmos International Inc. Copyright 2003, Pipeline Simulation Interest Group This

More information

Quick Reference Guide for Daily use of Yield-Pro Planter

Quick Reference Guide for Daily use of Yield-Pro Planter Quick Reference Guide for Daily use of Yield-Pro Planter Caution Please Read!! Note: This guide is intended for quick reference only. For complete set-up see owners manual, quick start guides and or your

More information

CLA-VAL e-timer. User Manual. Electronic Autonomous Time Controller. CLA-VAL Europe LIN038UE C 02/10

CLA-VAL e-timer. User Manual. Electronic Autonomous Time Controller. CLA-VAL Europe LIN038UE C 02/10 User Manual CLA-VAL Europe www.cla-val.ch cla-val@cla-val.ch 1 - LIN038UE C 02/10 Table of Contents 1 Introduction...3 1.1 Precautions Before Starting...3 1.2 Minimum Battery Voltage for Use...3 1.3 General

More information

SL 200 instrument can process the energy intensity emitted by the solar radiation in a precise place of the earth.

SL 200 instrument can process the energy intensity emitted by the solar radiation in a precise place of the earth. Solarimeter SL 200 Table of contents 1 Introduction...4 2 General information...4 2.1 Measured units...4 2.2 Use...4 3 Operating principle...5 3.1 Keyboard presentation...5 3.2 Instrument offers 3 groups

More information

All About the MultiLogger Setup File Application Note #7

All About the MultiLogger Setup File Application Note #7 5 Gould Road, PO Box 2155 New London, NH 03257 USA Voice: (603) 526-9800 info@canarysystems.com www.canarysystems.com All About the MultiLogger Setup File Application Note #7 Overview The MultiLogger setup

More information

CR1000 Measurement and Control System Overview Revision: 11/06

CR1000 Measurement and Control System Overview Revision: 11/06 CR1000 Measurement and Control System Overview Revision: 11/06 Copyright 2000-2006 Campbell Scientific, Inc. Table of Contents PDF viewers note: These page numbers refer to the printed version of this

More information

CONSTELLATION Field Controller Operation Manual

CONSTELLATION Field Controller Operation Manual FIELD CONTROL SYSTEMS CONSTELLATION OPERATION MANUAL CONSTELLATION Field Controller Operation Manual Firmware Version 6.00 Document Title CONSTELLATION FIELD CONTROLLER OPERATION MANUAL FIRMWARE VERSION

More information

SEPAC ECOM All Data. Access Code: Address: 1 1 :1200 Baud Revision: 3.34g. IP Address: :1200 Baud. 7 1-Inact. 8 1-Inact.

SEPAC ECOM All Data. Access Code: Address: 1 1 :1200 Baud Revision: 3.34g. IP Address: :1200 Baud. 7 1-Inact. 8 1-Inact. Intersection Name: Central & nd SEPAC ECOM All Data Intersection Alias: Cent Access Data Access Code: 9999 Channel: Address: :00 Baud Revision:.g IP Address: 0.0.. :00 Baud Initialization Data Initial

More information

ExactLogic BACnet Communicating Thermostat EXL01816 Sequence Datasheet

ExactLogic BACnet Communicating Thermostat EXL01816 Sequence Datasheet ExactLogic BACnet Communicating Thermostat EXL01816 Sequence Datasheet DataSheet ev 1.12.307/4.0 Jun 20, 2018 Operating Sequence Standard Occupied During normal occupied operation the display will show

More information

SCS3MT080, SCS3MT100, SCS3MT120, SHDHS1500 & SPLS1000 User Manual

SCS3MT080, SCS3MT100, SCS3MT120, SHDHS1500 & SPLS1000 User Manual www.scintex.com.au sales@scintex.com.au SCS3MT080, SCS3MT100, SCS3MT120, SHDHS1500 & SPLS1000 User Manual Technical Data Working Temperature:-5 to 35 C Storage Temperature:-25 to 50 C Stainless Steel Casing:

More information

Please enter the identity code of your device here!

Please enter the identity code of your device here! Operating Instructions DULCOMETER D2C Part 2: Adjustment and Operation, Measured Variables ph/ ProMinent D2C2-001-pH/-GB ph/cl 2 7.00 ph 0.45 ppm DULCOMETER STOP START ph/cl 2 7.00 ph 0.45 ppm DULCOMETER

More information

7-day room temperature controller

7-day room temperature controller s 2 208 7-day room temperature controller Heating applications REV34.. Mains-independent, battery-operated room temperature controller featuring user-friendly operation, easy-to-read display and large

More information

7-day room temperature controller

7-day room temperature controller s 2 205 7-day room temperature controller Heating or cooling applications REV24.. Mains-independent, battery-operated room temperature controller featuring user-friendly operation, easy-to-read display

More information

G75 Irrigation Window Controller

G75 Irrigation Window Controller BACCARA G75 Irrigation Window Controller WINDOW USERS GUIDE START ON ON ON ON END OFF 10:00 OFF OFF OFF 14:00 TABLE OF CONTENTS Getting Started FEATURES PARTS IDENTIFICATION BASIC CONTROLLER FUNCTIONS

More information

base screen base screen central base screen user prompts base screen valid PGM beep responses... 17

base screen base screen central base screen user prompts base screen valid PGM beep responses... 17 A About This Manual... 1 AC Power Supply Wiring... 21 access code... 328 access code entry... 269 access code level... 78 access code restrictions... 78 access enable/disable... 77 address... 153 address

More information

ORION BEAN DOSER OPERATION MANUAL

ORION BEAN DOSER OPERATION MANUAL ORION BEAN DOSER OPERATION MANUAL Contents Chapter 1: Introduction Chapter 2: Getting Started Chapter 3: s Chapter 4: Settings Chapter 5: Calibration 1 Chapter 1: Introduction Orion Bean Doser is a professional

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

CR3000 Micrologger Revision: 9/07

CR3000 Micrologger Revision: 9/07 CR3000 Micrologger Revision: 9/07 Copyright 2000-2007 Campbell Scientific, Inc. Warranty and Assistance The CR3000 MICROLOGGER is warranted by CAMPBELL SCIENTIFIC, INC. to be free from defects in materials

More information

CONFIGURING PARENT MODULE ALERTS

CONFIGURING PARENT MODULE ALERTS CONFIGURING PARENT MODULE ALERTS I. Introduction to Parent Module Alerts II. Overall Procedure to Enable Parent Module Alerts III. Creating Email Templates in the Parent Module IV. Creating Parent Module

More information

QC-3265 Checkweigher User s Manual

QC-3265 Checkweigher User s Manual QC-3265 Checkweigher User s Manual CAUTION Risk of electrical shock. Do not remove cover. No user serviceable parts inside. Refer servicing to qualified service personnel. Weigh-Tronix reserves the right

More information

Glossary access code alarm anemometer auto limits base screen central control mode Gloss

Glossary access code alarm anemometer auto limits base screen central control mode Gloss access code A user assigned 3 digit code used to restrict unauthorized usage (reprogramming/control) of the controller. alarm An irrigation related "event" reported by the controller which requires operator

More information

GRUNDFOS INSTRUCTIONS. Control MPC. Installation and operating instructions

GRUNDFOS INSTRUCTIONS. Control MPC. Installation and operating instructions GRUNDFOS INSTRUCTIONS Control MPC Installation and operating instructions English (GB) English (GB) Installation and operating instructions Original installation and operating instructions CONTENTS Page

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

805HP. Handheld Digital Weight Indicator User s Manual (v1703) Anyload Transducer Co. Ltd Website:

805HP. Handheld Digital Weight Indicator User s Manual (v1703) Anyload Transducer Co. Ltd Website: 805HP Handheld Digital Weight Indicator User s Manual (v1703) Anyload Transducer Co. Ltd Website: www.anyload.com Email: info@anyload.com TABLE OF CONTENTS 1. Introductions and Features 2 2. Safety Recommendations

More information

15 channel programmable event timer, with RPM and Pressure inputs. *With Tachometer Feature

15 channel programmable event timer, with RPM and Pressure inputs. *With Tachometer Feature ELECTRIMOTION INC. 144 DALE FORD RD. DELAWARE, OH 43015 740.362.0251 15 channel programmable event timer, with RPM and Pressure inputs. *With Tachometer Feature Power Input connector: 2 pin plug (red-black)

More information

BACVIEW MANUAL Software Version 3.06 INSTALLATION AND OPERATION MANUAL

BACVIEW MANUAL Software Version 3.06 INSTALLATION AND OPERATION MANUAL BACVIEW MANUAL Software Version 3.06 INSTALLATION AND OPERATION MANUAL 641-K31 1 BACVIEW INSTALLATION AND OPERATION IMPORTANT: This manual is for use with controller ZONE I/O 560 FHP part number 641-224

More information

ORION BEAN DOSER OPERATION MANUAL

ORION BEAN DOSER OPERATION MANUAL ORION BEAN DOSER OPERATION MANUAL Contents Chapter 1: Introduction Chapter 2: Getting Started Chapter 3: s Chapter 4: Settings Chapter 5: Calibration 1 Chapter 1: Introduction Orion Bean Doser is a professional

More information

RAIN BIRD RC-4Bi, RC-7Bi, RC-1260Bi SERIES INSTRUCTION MANUAL

RAIN BIRD RC-4Bi, RC-7Bi, RC-1260Bi SERIES INSTRUCTION MANUAL RAIN BIRD RC-4Bi, RC-7Bi, RC-1260Bi SERIES INSTRUCTION MANUAL DESCRIPTION OF CONTROLS Refer to Figure 1 Figure 1 A. HOUR DIAL with 23 CYCLE START PINS The HOUR dial contains 23 pins for rescheduling automatic

More information

Lecture 03: Thread API (continue)

Lecture 03: Thread API (continue) Lecture 03: Thread API (continue) SSC2 Behzad Bordbar School of Computer Science, University of Birmingham, UK Lecture 03 1 Recap Extending Thread or implementing Runnable Thread terminology Stopping Threads

More information

INSTRUCTION MANUAL. CS700 Tipping Bucket Rain Gage and CS700H Heated Rain Gage Revision: 12/17. Copyright Campbell Scientific, Inc.

INSTRUCTION MANUAL. CS700 Tipping Bucket Rain Gage and CS700H Heated Rain Gage Revision: 12/17. Copyright Campbell Scientific, Inc. INSTRUCTION MANUAL CS700 Tipping Bucket Rain Gage and CS700H Heated Rain Gage Revision: 12/17 Copyright 1995-2017 Campbell Scientific, Inc. Limited Warranty Products manufactured by CSI are warranted

More information

PLUS+1 GUIDE Software. JS6000 PWM Service Tool User Manual

PLUS+1 GUIDE Software. JS6000 PWM Service Tool User Manual PLUS+1 GUIDE Software JS6000 PWM Service Tool TEMP 1 6 1 6 12 7 12 7 About this Manual Organization and Headings To help you quickly find information in this manual, the material is divided into sections,

More information

Operating manual. Washer extractors W465H, W475H/M/S, W485M/S, W4105H/M/S, W4130H/M/S, W4180H/M/S, W4240H, W4250M/S, W4300H, W4330M/S, W4280X, W4350X

Operating manual. Washer extractors W465H, W475H/M/S, W485M/S, W4105H/M/S, W4130H/M/S, W4180H/M/S, W4240H, W4250M/S, W4300H, W4330M/S, W4280X, W4350X Operating manual Washer extractors W465H, W475H/M/S, W485M/S, W4105H/M/S, W4130H/M/S, W4180H/M/S, W4240H, W4250M/S, W4300H, W4330M/S, W4280X, W4350X Type W3..., EXSM.X. Clarus Control Original instructions

More information

Function: function procedures and sub procedures share the same characteristics, with

Function: function procedures and sub procedures share the same characteristics, with Function: function procedures and sub procedures share the same characteristics, with one important difference- function procedures return a value (e.g., give a value back) to the caller, whereas sub procedures

More information

Basic User and Installation Manual

Basic User and Installation Manual HERON ELECTRIC COMPANY LTD Basic User and Installation Manual Mi-4 Mi-8 Mi-12 Mi-16 Mi-144 Multi -Wire Controller Doc ref. Mi Multi Wire Basic November 2008 TABLE OF CONTENTS 1. About This Controller...

More information

Commercial Controllers & Central Control. Sean Azad Product Manager

Commercial Controllers & Central Control. Sean Azad Product Manager Commercial Controllers & Central Control Sean Azad Product Manager Agenda Commercial vs Residential TBOS II Battery Operated Controller LX Controllers Traditional vs Two Wire LXME LXD Options (ET Cartridge,

More information

Badger Meter Europa GmbH. LMS Baby System. Oil management system USER MANUAL. May Firmware v v3.9. LMS_Baby System_BA_02_1005

Badger Meter Europa GmbH. LMS Baby System. Oil management system USER MANUAL. May Firmware v v3.9. LMS_Baby System_BA_02_1005 Badger Meter Europa GmbH LMS Baby System Oil management system USER MANUAL May 2010 Firmware v2.21 - v3.9 bcccc Contents Page 1. Basic safety recommendations... 1 2. General description... 2 2.1 Technical

More information

DAYLIGHT SAVINGS TIME START/END MONTH [ 0 ]0 = Disabled; 1 = Enabled. 1 Start End

DAYLIGHT SAVINGS TIME START/END MONTH [ 0 ]0 = Disabled; 1 = Enabled. 1 Start End RcvrAcct#: Test Date: May, ::PM SYSTEM ENTRY DELAY# [ ] = None, = secs, = secs, = secs, = secs, = secs, = mins [UL installations: The Entry Delay must be set for a maximum of seconds] ENTRY DELAY# [ ]

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

PROGRESS IN DEVELOPING A WEB-BASED MANAGEMENT SYSTEM FOR IRRIGATION DISTRICTS

PROGRESS IN DEVELOPING A WEB-BASED MANAGEMENT SYSTEM FOR IRRIGATION DISTRICTS PROGRESS IN DEVELOPING A WEB-BASED MANAGEMENT SYSTEM FOR IRRIGATION DISTRICTS USCID Water Management Conference Irrigated Agriculture Responds to Water Use Challenges Strategies for Success Austin, Texas

More information

E-Module: GLCD+RTC Combo Datasheet

E-Module: GLCD+RTC Combo Datasheet E-Module: GLCD+RTC Combo Datasheet v1.1 Copyright 2008 AIS Cube. All rights reserved. The FlamingICE(FI) and FIDE are either registered trademarks or trademarks of AIS Cube in Singapore and/or other countries.

More information

Loadcell. Table Of Contents. Loadcell Help Rev: 17/06/04

Loadcell. Table Of Contents. Loadcell Help Rev: 17/06/04 Loadcell Help Rev: 17/06/04 Table Of Contents Loadcell... 1 Loadcell Quickstart... 1 FB Operations... 1 Loadcell Help Rev: 17/06/04... 2 Loadcell Quickstart... 2 FB Operations... 2 Loadcell Hardware Configuration...

More information

Instructions for D-55IRXT GameSpy Digital Camera

Instructions for D-55IRXT GameSpy Digital Camera Instructions for D-55IRXT GameSpy Digital Camera THANK YOU for your purchase of the D-55IRXT GameSpy Digital Camera. Please read this booklet before using the unit. If you should have any questions about

More information

MODEL 6600 Upflow - V2.0

MODEL 6600 Upflow - V2.0 Option Setting Level #1 Programming Chart NOTE: 1. Push Program Button once per display. 2. Option setting may be changed by pushing either the Up or Down Arrow Button. 3. Depending on current valve programming

More information

SPM Series Addendum to IM Series Manual

SPM Series Addendum to IM Series Manual SPM Series Addendum to IM Series Manual Solar Powered Water Softening System First Sales, LLC 12630 US Highway 33 N Churubusco, IN 46723 Phone (260) 693-1972 Fax (260) 693-0602 SPM Addendum 140804.docx

More information

October 18, Kit Pocket Sampler, and Kit DAS005. Kits may be bought from DIY Electronics (HK) Ltd.

October 18, Kit Pocket Sampler, and Kit DAS005. Kits may be bought from DIY Electronics (HK) Ltd. October 18, 1999. This is documentation for the new Windows software for DIY Electronics kits 112 and 118. The author uses his own names for these kits in the following documentation: Kit 112 - Pocket

More information

INSTRUCTION MANUAL. NL121 Ethernet Module Revision: 6/16. Copyright Campbell Scientific, Inc.

INSTRUCTION MANUAL. NL121 Ethernet Module Revision: 6/16. Copyright Campbell Scientific, Inc. INSTRUCTION MANUAL NL121 Ethernet Module Revision: 6/16 Copyright 2006-2016 Campbell Scientific, Inc. Limited Warranty Products manufactured by CSI are warranted by CSI to be free from defects in materials

More information

Dataloggers Also known as Data Loggers, Data Recorders, & RTUs

Dataloggers Also known as Data Loggers, Data Recorders, & RTUs COMPONENT CATEGORY Dataloggers Also known as Data Loggers, Data Recorders, & RTUs More info: +44(0) 1509 828 888 www.campbellsci.eu/dataloggers Campbell Scientific Datalogger Overview Campbell Scientific

More information

805HP. Handheld Digital Weight Indicator Operations Manual (V1612) Anyload Transducer Co. Ltd Website:

805HP. Handheld Digital Weight Indicator Operations Manual (V1612) Anyload Transducer Co. Ltd Website: 805HP Handheld Digital Weight Indicator Operations Manual (V1612) Anyload Transducer Co. Ltd Website: www.anyload.com Email: info@anyload.com TABLE OF CONTENTS 1. Introduction and Product Features 3 2.

More information

ES210. Animal & Vet Scale User s Manual (V1611) Anyload Transducer Co. Ltd

ES210. Animal & Vet Scale User s Manual (V1611) Anyload Transducer Co. Ltd ES210 Animal & Vet Scale User s Manual (V1611) Anyload Transducer Co. Ltd Website: www.anyload.com Email: info@anyload.com Fax: +1 866 612 9088 North America Toll Free: 1-855-ANYLOAD (269 5623) TABLE OF

More information

FAQ BlueWeigh Activity Tracker

FAQ BlueWeigh Activity Tracker FAQ BlueWeigh Activity Tracker Before wearing your fitness activity tracker and hit the gym your device needs to be connected to your smartphone. To setup BlueWeigh Activity Tracker please follow the steps

More information

DATA 301 Introduction to Data Analytics Microsoft Excel VBA. Dr. Ramon Lawrence University of British Columbia Okanagan

DATA 301 Introduction to Data Analytics Microsoft Excel VBA. Dr. Ramon Lawrence University of British Columbia Okanagan DATA 301 Introduction to Data Analytics Microsoft Excel VBA Dr. Ramon Lawrence University of British Columbia Okanagan ramon.lawrence@ubc.ca DATA 301: Data Analytics (2) Why Microsoft Excel Visual Basic

More information

System Controller Programming Manual

System Controller Programming Manual System Controller Programming Manual for V3030 and V3030-01 Version X105.01 or greater Page 2 System Controller Programming Manual System Controller Programming Manual Page 3 Table of Contents General

More information

805HP. Handheld Digital Weight Indicator Operations Manual (V1612) Anyload Transducer Co. Ltd Website:

805HP. Handheld Digital Weight Indicator Operations Manual (V1612) Anyload Transducer Co. Ltd Website: 805HP Handheld Digital Weight Indicator Operations Manual (V1612) Anyload Transducer Co. Ltd Website: www.anyload.com Email: info@anyload.com TABLE OF CONTENTS 1. Introduction and Product Features 3 2.

More information

USR Drive Flash Memory Serial Flash Memory CPU Drive MicroSD (CRD: Drive) Storage Formatting MicroSD Cards...

USR Drive Flash Memory Serial Flash Memory CPU Drive MicroSD (CRD: Drive) Storage Formatting MicroSD Cards... Table of Contents DATA ACQUISITION SYSTEM COMPONENTS... 1 Sensors... 2 Supported Sensor Types... 2 The CR6 Datalogger... 2 Components... 2 Communication Options... 3 Operations... 3 Programs... 3 WIRING

More information

INSTRUCTION MANUAL. CFM100 CompactFlash Module Revision: 9/16. Copyright Campbell Scientific, Inc.

INSTRUCTION MANUAL. CFM100 CompactFlash Module Revision: 9/16. Copyright Campbell Scientific, Inc. INSTRUCTION MANUAL CFM100 CompactFlash Module Revision: 9/16 Copyright 2000-2016 Campbell Scientific, Inc. Guarantee This equipment is guaranteed against defects in materials and workmanship. We will

More information

Product Correction Urgent Immediate Action Required

Product Correction Urgent Immediate Action Required Abbott GmbH & Co. KG Max Planck Ring 2 65205 Wiesbaden, Germany DIAGNOSTICS Urgent Field Safety Notice Product Correction Urgent Immediate Action Required Date d March 8, 2019 Product Product Name List

More information