Quick Start Guide. SR Logic Controller SuperCAD. Introduction. Features. Accessories

Size: px
Start display at page:

Download "Quick Start Guide. SR Logic Controller SuperCAD. Introduction. Features. Accessories"

Transcription

1 Introduction The SR family of programmable logic controllers provide a compact control unit offering a range of expansion options. The product family is supported with, a PC (Windows) based software development package that provides powerful programming, debugging, simulation and system monitoring support. Features 8 Input, 4 Outputs in a compact din-rail mounted design (71mm * 106mm * 67mm) or 14 Input, 8 Outputs (126mm * 106mmX 67mm). AC, DC and Analog inputs, Relay, Transistor outputs. Expandable I/O up to 50 Inputs, 32 Outputs Integrated LCD display/control module (SR-HMI), may be remotely mounted (SR-EHC) Programmable thru PC USB channel (SR-CP, SR-DCP) Powerful Programming support () Accessories RS232/485 Modbus Interface (SR-MC) Allows connecting unit to industry standard RS232/RS485 communication networks. Telephone/Voice Output Module (SR-VPx) Provides voice output of alarm conditions and allows dialing of phone, transmission of voice messages and accepting telephone response codes for remote control of alarm conditions. Operator Interface (SH-300) Expanded version of SR-HMI to provide front panel display and control. Remote Control (SR-RCx) Hand held remote controller allows controlling of program sequences 1 / 20

2 The SR logic controllers are programmed using Functional Control Blocks, which will be very familiar to those experienced in Ladder Logic programming of conventional PLC's. The software package operates on a Windows based PC and allows the user to write a program, simulate the program without requiring functional hardware, load and extract programs to an SR controller and to monitor the real time program execution on the controller. Functional Control blocks that define the inputs and outputs (I/O) and special functions (timers, counters etc.) are placed on a schematic using drag and drop capabilities found in many Windows applications. These blocks are interconnected using a combination of 'wires' and logic control blocks to provide the control program. Once created, the control program may be saved to disk, printed, transferred to an SR controller or run in a simulation mode. The simulator allows each input to be individually controlled and provides a graphic representation of the ON/OFF state of all the program blocks. The programs may be quickly edited to correct logic faults and add features. The SR controller family supports up to 128 logic blocks. Simple inputs, outputs and remote controller inputs are not counted in the logic block count. 2 / 20

3 Software Installation The software will run on Window based PC's (XP, Vista, Windows 7) and is available as a down-loadable file over the internet or as a stand-alone CD. If the software is downloaded select the 'RUN' option offered by the internet browser. If the software is being installed from a CD the setup program should automatically run. If the SETUP program does not automatically execute, open the CD drive and select the SETUP.EXE program. Note: In Windows 7 the file will be flagged as having an 'UNKNOWN PUBLISHER' with the option to ACCEPT or CANCEL. Select the ACCEPT option. The following installation sequences will be generated. In each case, the default option has been chosen. Standard disclaimer to exit all programs prior to installation Software license. Note duplication allowed for education and demonstration purposes. 3 / 20

4 Program is installed in the c:\program files\array\super CAD directory. A 'projects' directory will be automatically generated for user programs (c:\...\super CAD\Projects) Enter your Name and the Company Name (optional). The default serial number should not be altered. 4 / 20

5 Select the 'typical' installation Following the installation a new 'Super CAD' icon will be available on the desktop. USB Serial Support NOTE: If the software is being evaluated without connection to the actual device the USB Serial Support may be skipped. The USB installation is started by selecting the 'Install SR USB Support' icon on the CD. If the program is downloaded it will automatically run if the 'RUN' option is selected. Note: In Windows 7 the file will be flagged as having an 'UNKNOWN PUBLISHER' with the option to ACCEPT or CANCEL. Select the ACCEPT option. 5 / 20

6 Note: Connecting the hardware to the computer prior to installing the USB support files will likely cause the computer to explain that the driver files cannot be found and offers to search for the drivers. Exit the program, disconnect the device, install the drivers as explained below and then reconnect the device. Following the installation of the USB driver software the hardware device may be plugged in. The computer will report that it has found new hardware and is installing the device driver. At this point the is ready to communicate to the hardware. 6 / 20

7 Connecting the SR controller The SR controller is connected to the PC using the SR-DUSB assembly. The assembly plugs into the top of the SR controller and the USB cable into any of the computer USB connectors. 7 / 20

8 Starting Press the icon to start the program. To get the feel of how allows the user to build and simulate software step through the following sequence. 1 Select File-New Displays a menu to select which device to use. For our example, we will pick the SR-12xDC, although the exact model is not important at this point. 2 Select the 'IO' set of blocks (lower right of screen). Click on the Input Block. A rotating mouse icon will be shown. Place the mouse on the left handle of the grid an right-click. Select an Output Block and place it on the right hand side of the screen. There are three types of blocks I/O, FUNction and LOGical. Once placed on the grid area items may be edited by double right clicking or left clicking and selecting the 'Properties' menu option. For our example, we will simply place the default values. Some of the I/O blocks are specific to optional hardware. To enable these, go to the Controller menu item and select the additional hardware options. Block Types 8 / 20

9 3 Select the Link Tool icon. The mouse will change to a 'pencil' shape. As the mouse moves over valid connection points it will change to a '+' symbol. Right click the mouse on the IA0 connection point and then move the mouse to the connection point of OA0 and right click again. Link Tool Switching back to the 'edit' mode from the 'link' mode is done with either mouse button. The left button opens an 'edit option' menu that includes the 'properties' option. The right button highlights the block, allowing it to be dragged for repositioning. A double right click on a block opens the properties menu that will allow block specific parameters to be set. 4 Select the Simulator icon. Clicking on the IA0 block will cause it to switch between 'OFF' to 'ON'. As expected, the output OA0 will follow the input. Simulator As more complex blocks are inserted additional information is displayed, such as counter and timer values. Note that if the inputs are DC types they may be configured as Analog inputs using the input block properties menus, in which case the analog value may be set in the simulator mode. 9 / 20

10 Adding Some Logic The Functional Block Language used by the SR controller treats all items, including simple combinatorial functions as 'blocks' which differs from classic Ladder Logic. Consider an application in which there are three inputs, numbered 0..2 and an output. We desire that the output should be ON if both Input 0 AND Input 1 are ON OR if input 2 is ON. In a classic ladder logic 'program' this would be shown as follows. ( ) Input 0 Input 1 Output 0 Input 2 Elements that are in series are AND'd and elements that are in parallel are OR'd. The SR controller uses 4 input AND function blocks and 4 input OR function blocks to allow building the same functionality. Unused inputs of the function block should be assigned to either 'ON', when using AND functions or 'OFF' if using OR functions. The following screen shows the equivalent logic using functional blocks. Unused inputs are not examined by the Simulator but must be preset prior to loading a program onto a physical device. It is recommended that all unused block inputs be assigned a state. AND, NAND - ON OR, NOR - OFF Another option is to connect to 'Link Point P0..9. Link points may be inserted and connected to lines to avoid having common control signals create a 'rat's nest' of interconnect paths. The Properties menu allows assigning each block a 'name' by entering it in the comment section useful as programs grow in complexity. 10 / 20

11 To build this program: 1 Stop the Simulator (if running) by clicking the SIMULATOR button. Highlight the connection between IA0 and OA0 by right clicking it and select the Delete option. 2 Using the Input Block type in the Instruction Browser section place two new inputs on the left hand of the screen. 3 Select the LOGical block group and select the AND BIT block (B0). Place it on the screen as shown. Repeat, placing an OR BIT block (B1). 4 Using the LINK TOOL connect the IA0..IA1 inputs to the AND block (B0) inputs. Connect the IA2 and B0 output to the OR block (B1) and finally connect the B1 output to the physical OA0 input. 5 After placement the blocks may be dragged by selecting them with the mouse and holding down the right button. Any interconnects will be dragged with the block. 6 It is recommended that the unused inputs of the AND and OR blocks be assigned the appropriate ON or OFF states. Select the block by double clicking to open the properties menu and set the inputs accordingly. At this point the SIMULATOR may be again activated to test out the logic. Connecting to the SR Controller In order to communicate with SR Controller the USB interface must be established with the software. Communication Options Online / Offline options Selecting the COM button opens a Communications Configuration menu to allow selecting the correct COM port. If the wrong port is selected an error message is shown when the unit attempts to go online. The unit will automatically go 'online' after the com port is selected. It must be placed offline for editing and simulator operations. 11 / 20

12 Having established the communications port, it is now possible to download the previous program. First, select the SR RUN icon (small green arrow) to gain access to the unit. Then, select the 'download' button (large red arrows) to start the download process. At this point the system will ask for the Password, which defaults to Unless the password has been changed, simply select the 'OK' to proceed with the download. SR Control The factory default password is preset to During development it is probably wise to leave the factory default set. To change the password select the 'KEYS' symbol. NOTE: If you forget the password the only solution is to try each of the 9999 combinations until the correct one is found! After the program has been downloaded it is possible to restart the program using the SR-RUN button. Once the program starts, the MON button option is enabled. Selecting the Monitor mode allows displaying the state of the software in real time. The SR Status, Com Status and Software mode are always shown along the top of the screen. Monitoring must be disabled before the other run control options are re-enabled. Monitoring allows viewing the state of each of the function blocks but does not allow overwriting the blocks. While monitoring, function blocks that have internal parameters (timers, counters etc.) may be selected to view the real time values. 12 / 20

13 Logic Blocks The SR controller support 8 different LOGical blocks, summarized below. The Properties menu of each block provides and illustration of the 'truth table' of block specific functionality. The Help menu will provide additional information. The best method to gain an understanding of how these blocks interact is to place them in a circuit connected to digital inputs and outputs and then run the simulator. Alternatively, once placed on a circuit the properties menu of the Function Block may be opened by double clicking. Each property menu includes a 'simulation' button that allows observing the operation. Note: Blocks that include the 'RLO' functionality will only generate a single pulse which may be difficult to 'see' during simulation. It is recommended that these 'pulse generators' be connected to a simple PONS block (see FUNction blocks). The properties menu single point simulator includes a 'pulse stretching' function to allow observing the overall operation of RLO based functions. BLOCK NAME INPUTS Unused Inputs FUNCTION AND Bit 0..3 ON Output will be ON if all inputs are ON AND Bit RLO 0..3 ON Output will generate a PULSE when all inputs are ON. At least one input must then transition from ON OFF ON for another pulse to be generated. OR Bit 0..3 OFF Output will be ON if any input is ON NOT Bit 1 N/A Output will be the complement of the input. XOR Bit 2 N/A Output will be ON if both inputs are the same (both ON or both OFF) NAND Bit 4 ON Output will be OFF if all inputs are ON. Equivalent to an AND connected to a NOT. NAND Bit RLO 4 ON All inputs must then be ON to 'arm' the logic. After being 'armed' the Output will generate a PULSE when at least one of the inputs transition from ON to OFF. NOR Bit 4 OFF Output will be OFF if any input is ON. Equivalent to an OR connected to a NOT. 13 / 20

14 The 'RLO' function blocks generate a single pulse which is difficult to capture during simulation. A PONS function block inserted between the ANDRLO or NAND-RLO and output will better allow observing the operation. The integral simulation function available in each block's property menu provides an easy to use walk thru of the functionality of the block Block Simulator FUNCTION Blocks The SR Controller supports 14 advanced FUNCTION blocks. Their use is similar to the simpler I/O and LOGICAL function blocks described above, yet they offer a wide range of programming capability with minimal effort. 14 / 20

15 Devices with a 'P' output may have their parameter information displayed on the optional LCD display unit. This allows counter / timer values and presets to be displayed on the LCD and allows preset values to be written from the LCD display. Timed functions include Time-On, Time-Off, re-triggerable one-shot pulse generators and delays, with resolutions between 0.01 and seconds. Pulse functions include S(et)-R(eset) latches, toggle function blocks, pulse generators, 6 step sequencers and up/down counters. Comparator functions allow comparing analog inputs, with built in linearization or counter/timer count values. Sequencing support includes schedulers that trigger at a specific time(s), and 7 output time sequencers. To support Time-Of-Day sequencers the SR maintains an internal clock which may be set using in the Options menu. The only limitation on how many of each block type is used is the overall limitation of 128 function blocks. 15 / 20

16 BLOCK NAME INPUTS P Output TOND TRG RESET Yes Generates an ON state after a preset time interval. Reset override resets the output and time delay. TOFD TRG RESET Yes Generates an ON state for a preset time interval after the input goes OFF. Reset over-ride resets the output and time delay. PONS TRG RESET Yes Generates an ON state for a preset time interval after the input goes ON. Reset over-ride resets the output and time delay. SPBL TRG RESET No Toggles Output ON-OFF each time Input goes ON. Reset over-ride resets the output. TPBL SET RESET No Set inputs latches output ON. Reset latches output OFF. BLNK ENABLE RESET Yes Generates continuous pulses when enable is ON with fixed ON/OFF time. Reset forces output OFF. MTOD TRG RESET Yes Generates an ON state a preset time interval after the input goes ON. Reset over-ride resets the output and time delay. UDCT CNT DIR RESET Yes UP/DOWN count function when CNT goes ON. DIR determines whether counter increments or decrements. RESET count to 0. Output is active if count value > the preset value. CMPR INPUT 1 INPUT 2 Yes Provides analog comparator between two analog input points or analog input and preset. Auto-scaling & linearization support. Selectable comparison to determine state of Output. CMPR INPUT 1 INPUT 2 Yes Provides comparator between two counter/timer values or counter/timer value and preset. Selectable comparison to determine state of Output. SCHD No Output ON (or OFF) based on 128 settable scheduled times. Schedules may be set daily, weekly, monthly or yearly. SSEQ TRG RESET Yes When TRG is ON up to 7 Outputs will sequentially switch ON based on time values. TSEQ TRG RESET Yes Each time TRG transitions from OFF to ON up to 6 Outputs will sequentially switch ON based on time values. 16 / 20 FUNCTION

17 EXPANSION I/O Blocks In addition to the standard INPUT and OUTPUT blocks found in the I/O selection there are several blocks specific to optional peripheral devices. BLOCK NAME INPUTS OUTPUTS -- Q1 Activates the Output when a specific key is pressed on the remote control module. Each remote control supports 6 RCI blocks. DOUT TRG Q1, Q2 When TRG goes active an external telephone call will be made. Q1 and Q2 indicate the state of the call (received/no answer etc.) DIN TRG -- Outputs messages to telephone when activated. Interactive with telephone 'responses'. PMSG ON OFF No When activated (ON) messages will be played through a local audio system. The OFF signal will deactivate the playback. SCLD TRG P -- Allows setting specific display information which will appear on the LCD when the TRG is activated. The P signal connects to multiple different Function Blocks to allow access to specific parameters. RCI 17 / 20 FUNCTION

18 TANK LEVEL CONTROLLER The following illustrates a Tank Level controller application. A storage tank contains 4 level (ON-OFF Float switches), a control valve to allow fluid to flow into the tank and a control valve to allow fluid to flow out of the tank to a down-stream process. The down stream process will provide a 'demand input' when down-stream fluid is required. The controller is required to maintain the fluid level between the Hi level and Low level and must report alarms if the level is below the Empty level or above the Overflow level or if the Fill level is active too long. The Supply output will be activated when the Demand input is active provided that the fluid is at least above the Low Level and no Error condition exists. A Warning signal is generated if the Fill output is active for longer than expected. Fill (OUT) Overflow (IN) Hi Level HiLevel (IN) Low Level LowLevel (IN) Empty (IN) Supply (OUT) DownStream 18 / 20 Demand (IN) ALARM (OUT) UpStream WARNING (OUT) UpStream

19 NOTES The SUPPLY Output is ACTIVE if the DEMAND input is active and the level is above EMPTY and the LOWLEVEL has been initially active (B15 acts as toggle) and there is NO ALARM condition. Block B15 is triggered ACTIVE when the LOWLEVEL becomes active. It is cleared if the EMPTY level becomes active. The FILL Output is ACTIVE if there is NO OVERFLOW and the level has not reached the HILEVEL (B7, B3) and there is NO ALARM. Block B3 is triggered when the LOW LEVEL goes inactive and cleared when the HILEVEL is reached. In Operation, once the level drops below the LOW LEVEL the FILL will become active until the level rises to the HILEVEL. 19 / 20

20 The WARNING output will become ACTIVE if the FILL TIME WARNING timer expires. The time starts when the FILL output is active and there is NO DEMAND. If the DEMAND input is active it is assumed that the FILL may be continuously active so no warning is generated. The ALARM output is latched ON by the B17 toggle block if the OVERFLOW output is active or the NO LOW LEVEL TIMEOUT timer has triggered or there has been a level decrease with no DEMAND (leakage) or the NO HILEVEL timer has triggered. The ALARM condition latch may only be cleared by the RESET ERROR input, which is conditioned by B19 to generate a single pulse, eliminating the possibility that the RESET switch is left in the ON condition which would override the ALARM output. The NO LOW LEVEL timer is started when the FILL output is active and is cleared when the LOWLEVEL input is active or the ERROR RESET switch pulse. The LEVEL DECREASE, NO DEMAND time will be started if, after the HILEVEL, LOWLEVEL and EMPTY switches have all been satisfied, one of the switches goes inactive and there is no DEMAND signal. This effectively will detect a leak condition since the levels should not change if there is no DEMAND. The NO HILEVEL Timer is activated by the FILL output and NO DEMAND (B10, B12). It is cleared if the HILEVEL input is active. This ensures that if there is NO DEMAND and the FILL is active that the level reaches the HILEVEL within a prescribed time. Failure to do so would indicate a problem with the fill line. SCREEN FORMATING The screen format shown in the previous example has been 'tweaked' using the OPTIONS menu. This menu allows changing the colors of the background/lines/comments etc. It also allows setting up the title block at the bottom of the page and inserting a company logo. While interconnecting the blocks will draw connecting 'wires' which although functionally correct may leave a 'rat's nest' of interconnects. These may be cleaned up by physically dragging the wires. By right clicking a line it is also possible to use the 'cut line' option, which removes the line and inserts blue 'continuation' points illustrated on the B11/1and OA3 points. This allows lines to interconnect widely separated points. Finally, the File-Print menu option allows printing the final drawings, including a block/system usage summary for documentation purposes. 20 / 20

IMO. ismart. Training Manual

IMO. ismart. Training Manual IMO ismart Training Manual automation@imopc.com IMO IMO Precision Controls 1000 North Circular Rd Staples Corner London NW2 7JP Tel: +44 (0) 208 452 6444 Fax: +44 (0) 208 450 2274 Email: sales@imopc.com

More information

Programming Manual Quick II

Programming Manual Quick II Programming Manual Quick II Comat AG Bernstrasse 4 CH-3076 Worb Tel. +41 (0)31 838 55 77 www.comat.ch info@comat.ch Fax +41 (0)31 838 55 99 Ba Quick BoxX / 11.2004 E Preface Preface Quick II is a programming

More information

Zelio Logic 2 Online Help

Zelio Logic 2 Online Help Page 1 of 234 Zelio Logic 2 Online Help Overview of the Zelio Soft 2 Software At a Glance Subject of this Section This section provides an overview of the Zelio Soft 2 software. What's in this Part? This

More information

ATL20 ATL30 Automatic transfer switch controller

ATL20 ATL30 Automatic transfer switch controller I 194 GB 07 07 ATL20 ATL30 Automatic transfer switch controller REMOTE CONTROL SOFTWARE MANUAL Summary Introduction... 2 Minimum resources of the PC... 2 Installation... 2 Activation of the PC-ATL connection...

More information

PLC Programming D R. T A R E K A. T U T U N J I

PLC Programming D R. T A R E K A. T U T U N J I PLC Programming D R. T A R E K A. T U T U N J I PLC Programming As PLCs developed and expanded, programming languages have developed with them. The three types of programming languages used in PLCs are:

More information

RC-SV Configuration Guide (Rev 4)

RC-SV Configuration Guide (Rev 4) Kramer Electronics, Ltd. RC-SV Configuration Guide (Rev 4) Software Version 2.1.2.69 Intended for Kramer Technical Personnel or external System Integrators. To check that you have the latest version, go

More information

User Manual Software for DSL Digital Speed Switch

User Manual Software for DSL Digital Speed Switch User Manual Software for DSL Digital Speed Switch Software version from 0.9.9 Max-Dohrn-Str. 2+4 D-10589 Berlin Phone +49 (0)30 690 03-0 Fax +49 (0)30 690 03-104 info@baumerhuebner.com www.baumer.com Contents

More information

GSM AD05 Slave GSM Auto Dialer- Instruction Manual

GSM AD05 Slave GSM Auto Dialer- Instruction Manual GSM AD05 Slave GSM Auto Dialer- Instruction Manual Please read these instructions before you start the installation Features LCD display Programmable 9 x 32 digit phone numbers for each trigger. 10 second

More information

U90 Ladder Software Manual. Version 3.50, 6/03

U90 Ladder Software Manual. Version 3.50, 6/03 U90 Ladder Software Manual Version 3.50, 6/03 Table Of Contents Welcome to U90 Ladder... 1 Program Editors... 1 Project Navigation Tree...1 Browse Sequences...1 Printing Documentation...2 Interface Language...

More information

PduSetup User Manual. Professional Electronics for Automotive and Motorsport

PduSetup User Manual. Professional Electronics for Automotive and Motorsport Professional Electronics for Automotive and Motorsport 6 Repton Close Basildon Essex SS13 1LE United Kingdom +44 (0) 1268 904124 info@liferacing.com www.liferacing.com PduSetup User Manual Document revision:

More information

3700 SERIES USER MANUAL

3700 SERIES USER MANUAL SAFETY GUIDE This manual contains the precautions necessary to ensure your personal safety as well as for protection for the products and the connected equipment. These precautions are highlighted with

More information

USB-Link Technical Guide

USB-Link Technical Guide www.wattmaster.com USB-Link Technical Guide USB-Link Code: SS0070 Table of Contents General Information... 3 USB-Link Overview...3 System Requirements...3 Quick Guide... 4 Connection and Wiring... 5 USB-Link

More information

Setup Examples. NetArrays Project Program Development

Setup Examples. NetArrays Project Program Development Setup Examples NetArrays Project Program Development NetArrays Project Program Development Example 2005, 2007, 2008, 2009 RTP Corporation Not for reproduction in any printed or electronic media without

More information

Distributors News. December, 2004 Unitronics has announced a major market release. The release includes:

Distributors News. December, 2004 Unitronics has announced a major market release. The release includes: MAJOR RELEASE VISILOGIC 4.00, VISION 290, REMOTE ACCESS 4.00 & DATAXPORT 2.00 Unitronics has announced a major market release. The release includes: PID: includes internal Auto-tune Trends: Real-Time HMI

More information

Commander User Manual Version 1.1

Commander User Manual Version 1.1 Commander User Manual Version 1.1-1- Welcome Commander is a device control program for the E-Stim Systems Series 2B. This program allows you to directly control your 2B from a PC via the USB connection.

More information

Software user guide M A. software

Software user guide M A. software Software user guide M-9572-0058-05-A software Contents Page 1. General Information 2 1.1. Minimum system requirements 2 1.2. SiGNUM software features 2 2. Installation 3 2.1. Software installation 3 2.2.

More information

Automation Products for the New Millennium

Automation Products for the New Millennium Automation Products for the New Millennium 21640 N. 19 th Ave Ste C6 Phoenix AZ 85027 USA www.vsi-az.com 623-434-6621 1. OVERVIEW... 3 2. SOFTWARE REQUIREMENTS AND INSTALLATION... 3 3. WORKBENCH COMPONENTS...

More information

DISCOVER CONTROL IDE

DISCOVER CONTROL IDE DISCOVER CONTROL IDE Visual Logic Programmer... 3 Main window... 3 Logic parameters... 3 Functional blocks... 4 Inputs... 4 Outputs... 4 Constants... 5 Variables... 5 Creating program... 5 Emulator...

More information

SKYROS SERIES 3 Megapixel Pan Tilt POE IP Camera DG-SC3800P V

SKYROS SERIES 3 Megapixel Pan Tilt POE IP Camera DG-SC3800P V SKYROS SERIES 3 Megapixel Pan Tilt POE IP Camera DG-SC3800P V2.0 2013-07-06 1 2 The following items should be present in your package Network Pan/Tilt IP Camera AC power adapter (12V DC, 2A) Wall mounting

More information

Phone Information. IP2061 Quick Reference Guide. ICON Voice Networks REV 1.0. ICON Voice Networks

Phone Information. IP2061 Quick Reference Guide. ICON Voice Networks REV 1.0. ICON Voice Networks Phone Information Extension Number: Passcode / Voice Mail Access Code: IP Address: MAC Address: Serial Number: REV 1.0 IP2061 Quick Reference Guide ICON Voice Networks 8001 Jetstar Drive Irving, TX 75063

More information

Chapter 6: Desktop Call Control

Chapter 6: Desktop Call Control Chapter 6: Desktop Call Control Introduction to Desktop Call Control Introduction to Desktop Call Control Compatibility Guidelines: 25 Desktop Messaging/Call Control licenses are provided standard. License

More information

Retentive On-Delay (TONR)

Retentive On-Delay (TONR) A small sample of the flexibility of PLCs is shown in the following program logic. By reprogramming the T37 contact as a normally closed contact, the function of the circuit is changed to cause the indicator

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

SUPERPLEX 2. User s Manual. High performance, simplified wireless home security controller. Products that work. Software Release: V2.

SUPERPLEX 2. User s Manual. High performance, simplified wireless home security controller. Products that work. Software Release: V2. SUPERPLEX 2 User s Manual Products that work Software Release: V2.0 KE-MOBILEHQ-12- High performance, simplified wireless home security controller Thank you for purchasing this Kingdom Electronics product.

More information

High Definition LCD Digital Signage Display

High Definition LCD Digital Signage Display High Definition LCD Digital Signage Display User Manual Applicable Models L/PFxxH7(Android Version) MxxSA Cautions 1. Do Not install and use the unit in moisture, high temperature, outdoor and closed environment.

More information

SUPERPLEX. User s Manual. High performance, simplified wireless home security controller. Products that work. Software Release: V2.

SUPERPLEX. User s Manual. High performance, simplified wireless home security controller. Products that work. Software Release: V2. SUPERPLEX User s Manual Products that work Software Release: V2.5 KE-MOBILEHQ-12- High performance, simplified wireless home security controller Thank you for purchasing this Kingdom Electronics product.

More information

User Manual Digi-Sense 12-Channel Benchtop Data Logging Thermocouple Thermometer

User Manual Digi-Sense 12-Channel Benchtop Data Logging Thermocouple Thermometer User Manual Digi-Sense 12-Channel Benchtop Data Logging Thermocouple Thermometer Model: 92000-01 THE STANDARD IN PRECISION MEASUREMENT Table of Contents Introduction... 3 Unpacking... 3 Initial Setup...3

More information

CLSM3 Online Help. Overview of the programming workshop. Overview of the programming workshop. Overview of the Programming Workshop.

CLSM3 Online Help. Overview of the programming workshop. Overview of the programming workshop. Overview of the Programming Workshop. Page 1 sur 249 CLSM3 Online Help Online Help version 5.4 29/03/2006 Overview of the programming workshop At a Glance Subject of this Section This section provides an overview of the programming workshop

More information

DCN Synoptic Microphone Control. Software User Manual en LBB 3571

DCN Synoptic Microphone Control. Software User Manual en LBB 3571 DCN en LBB 3571 GENERAL CONTENTS Chapter 1-1.1 About 1.2 What is a synoptic layout? 1.3 Controlling microphones Chapter 2 - Getting Started 2.1 Starting 2.2 Using Help Chapter 3 - Preparing for a Conference

More information

Accord Builder. User Guide

Accord Builder. User Guide User Guide Document: V 3.6 User Guide R01 V3.6 User Guide R01 Page 1 of 110 Table of Contents 1 Introduction... 7 2 General Summary and Definitions... 8 2.1 Accord Platform and Plant... 8 2.2 PLC Control

More information

NORDSON CORPORATION AMHERST, OHIO USA

NORDSON CORPORATION AMHERST, OHIO USA CanWorks Operator Interface Tracking PLUS for CanWorks Systems with SM-2 Spray Monitors User Guide Part 1018132A NORDSON CORPORATION AMHERST, OHIO USA 2002 Nordson Corporation. All rights reserved. CanWorks,

More information

TruVision DVR 60 Quick Start Guide

TruVision DVR 60 Quick Start Guide Content Package contents 1 Installation environment 1 Setting up the TVR 60 1 Connecting the devices 2 Turning on and off the TVR 60 2 Operating the TVR 60 3 DDNS settings 5 Live mode 5 Quick Archive 5

More information

Model 2000 Programmer EnSonic Display & Control Unit. Document code: M2KCNF.001

Model 2000 Programmer EnSonic Display & Control Unit. Document code: M2KCNF.001 Model 2000 Programmer EnSonic Display & Control Unit Document code: 10735.M2KCNF.001 Document Model 2000 Programmer: EnSonic Display & Control Unit Document code 10735.M2KCNF.001 Date January 25, 2004

More information

USER MANUAL FOR GS100/GS1003G

USER MANUAL FOR GS100/GS1003G USER MANUAL FOR GS100/GS1003G 1 Table of Contents 1. INTRODUCTION... 3 2. FEATURES... 3 3. OPERATION... 3 4.CONNECTION DETAILS... 4 5.CONFIGURATION... 5 5.1 Hyper Terminal Setting... 5 5.2 GS100 Configuration...

More information

Dataman-S6 - User's Manual. Dataman-S6 Compact USB Programmer User's Manual

Dataman-S6 - User's Manual. Dataman-S6 Compact USB Programmer User's Manual Dataman-S6 Compact USB Programmer User's Manual Contents Chapter 1 Product Description 1-1 Introduction 1-2 Safety Information 1-3 Precautions 1-4 Operating System, Hardware Requirements 1-5 Accessories

More information

USB 3.0 Universal Dual Video Docking Station Installation Guide

USB 3.0 Universal Dual Video Docking Station Installation Guide Introduction USB 3.0 Universal Dual Video Docking Station Installation Guide The USB 3.0 Universal Dual Video Docking Station is designed for a computer that has multiple connectivity demands. Features

More information

TiSecurityPolyx user manual

TiSecurityPolyx user manual Version 1.0 06/08 - CT TiSecurityPolyx user manual Software for the configuration of the 3485 Burglar Alarm Unit CONTENTS 1. Hardware and Software requirements 4 2. Installation 4 3. Basic concepts 8

More information

AP-7 Pump Station Controllers

AP-7 Pump Station Controllers Introduction The following application note discusses the use of the SR and APB family of micro PLC's for use as pump station controllers. The example will illustrate use in pump down applications such

More information

SAFEGUARD CONTENTS. Digital Video Recorder. Version 1.3. Page. DVR Server S A F E G U A R D

SAFEGUARD CONTENTS. Digital Video Recorder. Version 1.3. Page. DVR Server S A F E G U A R D S A F E G U A R D SAFEGUARD Digital Video Recorder Version 1.3 CONTENTS Chapter 1 Chapter 2 Chapter 3 3.1 3.2 3.3 3.4 3.5 3.6 3.7 3.8 3.9 Chapter 4 4.1 4.2 Remote Client Chapter 5 Chapter 6 Chapter 7 7.1

More information

MobilTherm 2ad. 1. How the interface works: GSM temperature alarm module with auxiliay inputs and relay outputs

MobilTherm 2ad. 1. How the interface works: GSM temperature alarm module with auxiliay inputs and relay outputs MobilTherm 2ad GSM temperature alarm module with auxiliay inputs and relay outputs The MobilTherm-2ad is a GSM temperature and remote signaling module, designed for GSM based remote control, remote signal.

More information

Quick Start Guide GV-VMS

Quick Start Guide GV-VMS Quick Start Guide GV-VMS Thank you for purchasing GV-VMS. This guide is designed to assist the new user in getting immediate results from the GV-VMS. For advanced information on how to use the GV-VMS,

More information

User s Manual of DVR ULTIMAX. Remote Client Software V wersja 2.40

User s Manual of DVR ULTIMAX. Remote Client Software V wersja 2.40 User s Manual of DVR ULTIMAX Remote Client Software V 4.0.1 ULTIMAX-304 ULTIMAX-308 ULTIMAX-316 ULTIMAX-504 ULTIMAX-508 ULTIMAX-516 ULTIMAX-704 ULTIMAX-708 ULTIMAX-716 wersja 2.40 Index 1 Software Install,

More information

RC-SV Configuration Guide Revision 3

RC-SV Configuration Guide Revision 3 Kramer Electronics, Ltd. RC-SV Configuration Guide Revision 3 Software Version 2.1.2.32 Intended for Kramer Technical Personnel or external System Integrators. To check that you have the latest version,

More information

TLL5000 Electronic System Design Base Module

TLL5000 Electronic System Design Base Module TLL5000 Electronic System Design Base Module The Learning Labs, Inc. Copyright 2007 Manual Revision 2007.12.28 1 Copyright 2007 The Learning Labs, Inc. Copyright Notice The Learning Labs, Inc. ( TLL )

More information

NVMS User Manual. Version 2.1.0

NVMS User Manual. Version 2.1.0 NVMS-1000 User Manual Version 2.1.0 Contents 1 Software Introduction... 1 1.1 Summary... 1 1.2 Operation Environment... 1 1.3 Install and Uninstall... 2 1.3.1 Install the Software... 2 1.3.2 Uninstall

More information

Product Manual. Application Unit Logic

Product Manual. Application Unit Logic Product Manual 1. General... 4 1.1. Product and functional overview... 4 2. Device technology... 5 2.1. Technical data... 6 2.2. Circuit diagram... 7 2.3. Dimension drawing... 7 2.4. Assembly and installation...

More information

USB-Link 2 Technical Guide

USB-Link 2 Technical Guide www.wattmaster.com USB-Link 2 USB-Link 2 Code: SS0073 Version 4.11 and up Table of Contents General Information... 3 USB-Link 2 Overview...3 System Requirements...3 Quick Guide... 4 USB-Link 2 Driver Installation

More information

Application program usage. Functional description

Application program usage. Functional description Application program usage Product family: Product type: Manufacturer: Name: Order-No.: Controller Controller Siemens Functional description IP Controller N350E 5WG1 350-1EB01 The IP Controller N350E is

More information

& Technical Specifications

& Technical Specifications User Manual & Technical Specifications User manual Contents Pidion BM-170 Technical specifications... 2 Micro Rolltalk basic package... 3 Micro Rolltalk functions and buttons... 3 Preparing Micro Rolltalk...

More information

SYSdev Program Development Manual Version 4.3

SYSdev Program Development Manual Version 4.3 SYSdev Program Development Manual Version 4.3 Systems Engineering Associates, Inc. 14989 West 69th Avenue Arvada, Colorado 80007 U.S.A. Telephone: (303) 421-0484 Fax: (303) 421-8108 www.sea-seg.com 02/2004

More information

Ch 9 Discrete Control Using PLCs and PCs

Ch 9 Discrete Control Using PLCs and PCs Ch 9 Discrete Control Using PLCs and PCs Sections: 1. Discrete Process Control 2. Ladder Logic Diagrams 3. Programmable Logic Controllers 4. Personal Computers Using Soft Logic Discrete Process Control

More information

USB-Link 2 Technical Guide. USB-Link 2 Code: SS0073 Version 4.11 and up

USB-Link 2 Technical Guide. USB-Link 2 Code: SS0073 Version 4.11 and up USB-Link 2 Technical Guide USB-Link 2 Code: SS0073 Version 4.11 and up TABLE OF CONTENTS Zone Zone General Information... 3 USB-Link 2 Overview...3 System Requirements...3 Quick Guide... 4 USB-Link 2 Driver

More information

University of Technology

University of Technology University of Technology Lecturer: Dr. Sinan Majid Course Title: microprocessors 4 th year Lecture 13 Counters Overview Counters are important components in computers The increment or decrement by one

More information

Totally Integrated Automation (T I A) MODULE A3 Startup PLC- Programming with STEP 7

Totally Integrated Automation (T I A) MODULE A3 Startup PLC- Programming with STEP 7 Totally Integrated Automation (T I A) MODULE A3 Startup PLC- Programming with STEP 7 Page 1 of 48 AGE: 1. Forward... 5 2. Notes for the Programming of SIMATIC S7-300 with STEP 7... 7 2.1 Automation system

More information

Allen-Bradley Replacement

Allen-Bradley Replacement Preface...? Who Should Use this Manual...? Purpose of this Manual...? Common T echniques Used in this Manual...? Setting Up Your Equipment... Hardware Requirements... Controller Styles... Setting Up a

More information

Quick-Start Guide. BNS Solutions. QSK62P Plus

Quick-Start Guide. BNS Solutions. QSK62P Plus BNS Solutions Quick-Start Guide QSK62P Plus RS-232 Port Link LED 8-character x 2-line LCD Expansion Port (2) Reset Switch Power LED Thermistor I/O Ring (4) M16C MCU Analog Adjust Pot MCU Crystal Expansion

More information

Projector Operation Guide

Projector Operation Guide Projector Operation Guide Contents 2 Introduction Making effective use of your projector... 6 Sending Images Via a Network (EMP NS Connection) (EB-826W/825/85).......... 6 Monitor, configure, and control

More information

DEEP SEA ELECTRONICS PLC DSE334 Configuration Suite Software Manual

DEEP SEA ELECTRONICS PLC DSE334 Configuration Suite Software Manual DEEP SEA ELECTRONICS PLC DSE334 Configuration Suite Software Manual Document Number 057-156 Author: Paul Gibbons DSE334 Configuration Suite Software Manual ISSUE 1 DSE334 Configuration Suite Software Manual

More information

Central Management Software. Cam Viewer 3 Lite. User Manual

Central Management Software. Cam Viewer 3 Lite. User Manual Central Management Software Cam Viewer 3 Lite User Manual Version 1.0.0 Table of Contents 1. System Requirement...4 2. Software Installation...5 3. Configuration Wizard...9 3.1 Channel...10 3.1.1 Adding

More information

M2500 Engine Controller Configuration Manual

M2500 Engine Controller Configuration Manual M2500 Engine Controller Configuration Manual Revision: 08-04-2011 Page 1 Contents 1 Preface... 4 2 Configuration from front panel... 5 2.1 Engine Controller Configuration... 6 2.1.1 RPM settings... 6 2.1.2

More information

Operation and installation manual KNX IO 511 (1O2I) Application. 1. Installation and Connection

Operation and installation manual KNX IO 511 (1O2I) Application. 1. Installation and Connection EN Operation and installation manual KNX IO 511 (1O2I) (Art. # 5232) Switching actuator with 1 output and 2 binary inputs A. KNX Programming mode The KNX programming mode is activated/deactivated either

More information

SmartWatch Eco/Eco Compact

SmartWatch Eco/Eco Compact SmartWatch Eco/Eco Compact Digital Video Recorders SmartWatch Eco SmartWatch Eco Compact Quick User Guide Index Box Contents...3 Front Panel Controls...4-5 SmartWatch Eco Compact...4 SmartWatch Eco...5

More information

General Information 1. Connection 2. User Interface 3 ATC5300. Menus 4. Automatic Transfer Controller. Remote Control Software Manual A5E

General Information 1. Connection 2. User Interface 3 ATC5300. Menus 4. Automatic Transfer Controller. Remote Control Software Manual A5E s General Information 1 Connection 2 Automatic Transfer Controller User Interface 3 Menus 4 Remote Control Software Manual Edition 01/2010 A5E02469028-01 Legal information Warning notice system This manual

More information

Manual Version: V1.15. Video Management Software Guard Station User Manual

Manual Version: V1.15. Video Management Software Guard Station User Manual Manual Version: V1.15 Video Management Software Guard Station User Manual Thank you for purchasing our product. If there are any questions, or requests, please do not hesitate to contact the dealer. Disclaimer

More information

USB-Link 2 Technical Guide

USB-Link 2 Technical Guide www.wattmaster.com USB-Link 2 Technical Guide USB-Link 2 Code: SS0073 Version 4.11 and up TABLE OF CONTENTS GENERAL INFORMATION... 3 USB-Link 2 Overview... 3 System Requirements... 3 QUICK GUIDE...4 USB-LINK

More information

USB 3.0 Single/Dual Display Docking Station. User's Manual

USB 3.0 Single/Dual Display Docking Station. User's Manual USB 3.0 Single/Dual Display Docking Station User's Manual Table of contents Safety instructions...1 Copyright...1 Trademarks...1 Introduction...2 Features...2 Package contents...2 System requirements...3

More information

Programmable Relay ZEN V2 Units

Programmable Relay ZEN V2 Units Programmable Relay ZEN V2 Units Please read and understand this catalog before purchasing the products. Please consult your OMRON representative if you have any questions or comments. Refer to Warranty

More information

SOFTWARE VERSION 3.20

SOFTWARE VERSION 3.20 48EPEP-00 SOFTWARE VERSION 3.20 HEXA PROGRAMMING: Addresses 000 to 043 and 300 to 527 are programmed using the Hexa Programming method. In this mode, you can enter any hexa-digit from 0-F where keys [1]

More information

INTERFACE & SOFTWARE GUIDE

INTERFACE & SOFTWARE GUIDE TM INTERFACE & SOFTWARE GUIDE Wireless Remote Display USB Converter Battery Sensor Setup DataLogger Software r e m o t e i n t e r f a c e escape enter status w w w. s k y s t r e a m e n e r g y. c o

More information

How to install the software of ZNS8022

How to install the software of ZNS8022 How to install the software of ZNS8022 1. Please connect ZNS8022 to your PC after finished assembly. 2. Insert Installation CD to your CD-ROM drive and initiate the auto-run program. The wizard will run

More information

FERGUSON BEAUREGARD. User Manual

FERGUSON BEAUREGARD. User Manual FERGUSON BEAUREGARD inodeconfig ic User Manual FERGUSON BEAUREGARD inodeconfig ic User Manual The Ferguson Beauregard AUTO-CYCLE and inodeconfig ic program and manuals are Copyright by Ferguson Beauregard.

More information

EZPLC Software Manual Manual Part Number EZPLC-EDIT-M Revision A.6. Introduction

EZPLC Software Manual Manual Part Number EZPLC-EDIT-M Revision A.6. Introduction EZPLC Software Manual Manual Part Number EZPLC-EDIT-M Revision A.6 Introduction This page intentionally left blank. EZPLC Software Manual Manual Part Number EZPLC-EDIT-M Revision A.6 Introduction WARNING!

More information

Table of Contents.

Table of Contents. Table of Contents http://www.advancedactuators.com 1. Items Included with the ThumbLock PCMU:... 2 2. IMPORTANT NOTE:... 2 3. Supported Operating Systems:... 2 Section 1 Installing the ThumbLock PCMU Software...

More information

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission.

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission. INTRODUCTION This manual will guide you through the first steps of getting the SE-8051ICD running with the Crossware 8051 Development Suite and the Atmel Flexible In-System Programming system (FLIP). The

More information

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

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

More information

Chapter A1: Setting up BankLink Practice, BankLink Notes and BankLink Notes Online

Chapter A1: Setting up BankLink Practice, BankLink Notes and BankLink Notes Online Chapter A1: Setting up BankLink Practice, BankLink Notes and BankLink Notes Online This chapter is aimed at BankLink Administrators This chapter covers setting up BankLink Practice and BankLink Notes Online

More information

Table of Contents. The Botron B92700 OMNIGND is a Multi-Ground Continuous Monitoring Automation System.

Table of Contents. The Botron B92700 OMNIGND is a Multi-Ground Continuous Monitoring Automation System. Operation Manual Table of Contents Description: The Botron B92700 OMNIGND is a Multi-Ground Continuous Monitoring Automation System. Directory: Overview Pg. 2 Features Pg. 3 Quick Setup Guide Pg. 3 Settings

More information

PC-RMS. PC - Remote Monitoring System. USER Guide

PC-RMS. PC - Remote Monitoring System. USER Guide PC-RMS PC - Remote Monitoring System USER Guide Revision 2.1, 2015 PC-RMS 1 Contents 2 Overview... 4 3 Introduction and key features... 4 4 Status Panel... 8 4.1 Live Readings... 8 4.2 Alerts... 8 5 Graph...

More information

QUICK START. DevCom2000 User Manual

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

More information

Welcome to Playlist, the world s easiest to use digital signage software

Welcome to Playlist, the world s easiest to use digital signage software http://www.viewtv.co.nz/playlist Playlist User Guide V2.1 Welcome to Playlist, the world s easiest to use digital signage software CONTENTS 1.0 LOGIN 1.1 ViewTV NZ Server 1.2 ViewTV Playlist PC Server

More information

SYMETRIX SOLUTIONS: TECH TIP May 2014

SYMETRIX SOLUTIONS: TECH TIP May 2014 Input Logic Modules This tech tip will cover a variety of ways in which the Input Logic Module from Control Modules->Control Logics can be used within a SymNet system. Input Logic Modules are typically

More information

USB-Link 2 Technical Guide. USB-Link 2 Code: SS0073 Version 4.11 and up

USB-Link 2 Technical Guide. USB-Link 2 Code: SS0073 Version 4.11 and up USB-Link 2 Technical Guide USB-Link 2 Code: SS0073 Version 4.11 and up TABLE OF CONTENTS GENERAL INFORMATION... 3 USB-Link 2 Overview... 3 System Requirements... 3 QUICK GUIDE...4 USB-LINK 2 DRIVER INSTALLATION

More information

1. Concepts and What s New Concepts What's New in E Getting Started Starting Electra Page Scale

1. Concepts and What s New Concepts What's New in E Getting Started Starting Electra Page Scale 1 1. Concepts and What s New... 6 1.1 Concepts... 6 1.2 What's New in E6... 7 2. Getting Started... 8 2.1 Starting Electra... 8 2.2 Page Scale... 8 2.3 Page Measurement Units... 9 2.4 Stencils and Drawing

More information

DATA LOGGING SOFTWARE FOR 4-WAY BALL VALVE DIGITAL MANIFOLD

DATA LOGGING SOFTWARE FOR 4-WAY BALL VALVE DIGITAL MANIFOLD DATA LOGGING SOFTWARE FOR 4-WAY BALL VALVE DIGITAL MANIFOLD The Mastercool Data Logger Application provides all the necessary Recorder and Display Functions to record, display and save new data or playback

More information

Time Mark Corporation Model 42A Pump Controller User s Guide

Time Mark Corporation Model 42A Pump Controller User s Guide Time Mark Corporation Model 42A Pump Controller User s Guide Graphic display User friendly Expandable Communications capable 2009 Time Mark Corporation. All rights reserved. Made in the U.S.A. Time Mark

More information

GSM Communicator GJD710 PLEASE READ THESE INSTRUCTIONS CAREFULLY BEFORE YOU START THE INSTALLATION

GSM Communicator GJD710 PLEASE READ THESE INSTRUCTIONS CAREFULLY BEFORE YOU START THE INSTALLATION GSM Communicator GJD710 PLEASE READ THESE INSTRUCTIONS CAREFULLY BEFORE YOU START THE INSTALLATION THIS EQUIPMENT WILL NOT WORK ON THE FEATURES NETWORK LCD display showing text in any of 8 different languages

More information

Products no longer available

Products no longer available Technical data sheet BKS24-.. MONICO-Controller BKS24-.. Forms an efficient fire protection system together with the motorisation sets BF(G)24MP Controller with application software for control and monitoring

More information

I.A.M. National Pension Fund Remittance Report Software

I.A.M. National Pension Fund Remittance Report Software I.A.M. National Pension Fund Remittance Report Software The USER S GUIDE INTRODUCTION The I.A.M. National Pension Fund Remittance Report Software version 2.0 (IAMNPF RR Software) is a program created to

More information

CAMit I Camera with built in Modem

CAMit I Camera with built in Modem CAMit I Camera with built in Modem User s Manual CAMit I AP revision: 3.3 CAMit I Setup revision: 2.0.1 Manual revision: 2.0 Date: February 27, 2002 Congratulations You just acquired a fine product from

More information

Wireless transfer of screening data from ALGO 3i Screener to PC

Wireless transfer of screening data from ALGO 3i Screener to PC Wireless transfer of screening data from ALGO 3i Screener to PC This technical notice provides information on transmitting screening results from your ALGO 3i Newborn Hearing Screener to a personal computer

More information

Quick Reference Guide

Quick Reference Guide Quick Reference Guide Rev.1.0 (July.2004) 1. Overview 1.1 Box Content Please make sure the following items are in the box. Content Description Remark Product main body NVS (Network A/V Server) NVS410 :

More information

TelePACE Studio Ladder Logic Training Manual

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

More information

SMART PROGRAMMABLE RELAYS

SMART PROGRAMMABLE RELAYS CONTROL LOGIC SMART PROGRAMMABLE RELAYS c3controls line of compact programmable relays are integrated, and ready to use, with a wide range of programmable functions. With up to 250 lines of ladder logic

More information

Axxis Biometrics LLC. BioAxxis L113 Fingerprint Door Lock Programming Kit

Axxis Biometrics LLC. BioAxxis L113 Fingerprint Door Lock Programming Kit Axxis Biometrics LLC BioAxxis L113 Fingerprint Door Lock Programming Kit Revision 0.14 Dec 2005 Table of Contents 1. Introduction... 2 Product Overview... 2 Main Features... 2 Packing Lists... 3 2. Operation

More information

BLDA-1 & 2 Water Leak Detection Manual. CMR Electrical Ltd Bolton House Five Chimneys Lane Hadlow Down East Sussex TN22 4DX Tel:

BLDA-1 & 2 Water Leak Detection Manual. CMR Electrical Ltd Bolton House Five Chimneys Lane Hadlow Down East Sussex TN22 4DX Tel: BLDA-1 & 2 Water Leak Detection Manual CMR Electrical Ltd Bolton House Five Chimneys Lane Hadlow Down East Sussex TN22 4DX Tel: 01825 733600 Contents 1) System Overview 2) Installation 3) Wiring 4) Water

More information

ADR View Software for Three Phase Mains Supply Analysers

ADR View Software for Three Phase Mains Supply Analysers ADR View Software for Three Phase Mains Supply Analysers Software Systems ADR-VIEW PRESENTATION AND CONTENTS Three phase mains power supply analysis software from the VEMER ADR range. The instruments are

More information

Familiarization with the PLC Trainer and RSLogix 500

Familiarization with the PLC Trainer and RSLogix 500 Exercise 1 Familiarization with the PLC Trainer and RSLogix 500 EXERCISE OBJECTIVES To become familiar with the Lab-Volt PLC Trainer To run the RSLogix 500 software. To enter the default project files

More information

Operating Manual. Version 7.3.4

Operating Manual. Version 7.3.4 Operating Manual Version 7.3.4 March 2011 Index Page 1. Installation instructions 4 1.1 System requirements 4 1.2 Installation procedure 4 1.3 Meitav-tec USB adaptor installation 7 2. Open Maxinet and

More information

B-Works 2 User s Guide

B-Works 2 User s Guide B-Works 2 User s Guide UMBWORKS 011413V1 Table of Contents 1. Introduction... 2 2. System Requirements... 2 3. Install B-Works 2... 3 4. Connection to the Hardware... 7 5. Start to Use B-Works 2... 7 6.

More information

Supply voltage. Input current. Encoder supply. Memory

Supply voltage. Input current. Encoder supply. Memory Data sheet SIMATIC S7-200, CPU 224XP COMPACT UNIT, DC POWER SUPPLY 14 DI DC/10 DO DC, 2 AI, 1 AO 12/16 KB CODE/10 KB DATA, 2 PPI/FREEPORT PORTS Supply voltage Rated value (DC) 24 V DC Load voltage L+ Rated

More information